Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. cueFirstTrackNumber :: CueSheet -> !Natural

    cue-sheet Text.CueSheet

    Number of the first track. Typically 1, but may be greater than 1.

  2. cueFirstTrackNumber :: CueSheet -> !Natural

    cue-sheet Text.CueSheet.Types

    Number of the first track. Typically 1, but may be greater than 1.

  3. _assNumberOfSamples :: AgeSamplingConf -> Word

    currycarbon Currycarbon

    Number of samples that should be drawn per sample

  4. _assNumberOfSamples :: AgeSamplingConf -> Word

    currycarbon Currycarbon.Calibration.Calibration

    Number of samples that should be drawn per sample

  5. parseNumber :: Parser [Char]

    currycarbon Currycarbon.ParserHelpers

    No documentation available.

  6. enum :: Enum a => Memo a

    data-memocombinators Data.MemoCombinators

    Memoize an enum type.

  7. enumToGauge :: Enum a => a -> Metric

    data-prometheus Data.Prometheus.Monad

    Convert Enum to Gauge, 0 (typically) meaning Ok status

  8. hackageVersionNumbers :: HackageVersion -> [Int]

    debian-build Debian.Package.Data.Hackage

    Extract hackage version numbers.

  9. signum :: forall a (d :: Dimension) . Num a => Quantity d a -> Dimensionless a

    dimensional Numeric.Units.Dimensional

    Takes the sign of a Quantity. The functions abs and signum satisy the law that:

    abs x * signum x == x
    
    The sign is either negate _1 (negative), _0 (zero), or _1 (positive).

  10. isFiniteNumber :: forall a (d :: Dimension) . RealFloat a => Quantity d a -> Bool

    dimensional Numeric.Units.Dimensional.Float

    True if the representation of the argument is a number and is not infinite.

    >>> isFiniteNumber (_1 / _0)
    False
    
    >>> isFiniteNumber (_0 / _0)
    False
    
    >>> isFiniteNumber (_3 / _2)
    True
    

Page 456 of many | Previous | Next