Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. number :: forall (m :: Type -> Type) . Monad m => Parser Char m (Integer, Int)

    streamly-core Streamly.Internal.Unicode.Parser

    A generic parser for scientific notation of numbers. Returns (mantissa, exponent) tuple. The result can be mapped to Double or any other number representation e.g. Scientific. For example, using the scientific package: >> parserScientific = uncurry Data.Scientific.scientific $ number

  2. numeric :: forall (m :: Type -> Type) . Monad m => Parser Char m Char

    streamly-core Streamly.Internal.Unicode.Parser

    Match any character that satisfies isNumber

  3. numeric :: forall (m :: Type -> Type) . Monad m => Parser Char m Char

    streamly-core Streamly.Unicode.Parser

    Match any character that satisfies isNumber

  4. number :: Pattern Note -> ControlPattern

    tidal-core Sound.Tidal.Params

    No documentation available.

  5. numInner :: Num b => Tree a -> b

    tree-fun Math.TreeFun.Tree

    Return the number of inner nodes of a tree

  6. numLeaves :: Num b => Tree a -> b

    tree-fun Math.TreeFun.Tree

    Return the number of leaves in a tree

  7. numIn :: forall (dim :: [Factor Type]) unit n . (ValidDLU dim ('DefaultLCSU :: LCSU Type) unit, Fractional n) => Qu dim ('DefaultLCSU :: LCSU Type) n -> unit -> n

    units Data.Metrology

    Extracts a numerical value from a dimensioned quantity, expressed in the given unit. For example:

    inMeters :: Length -> Double
    inMeters x = numIn x Meter
    
    or
    inMeters x = x # Meter
    

  8. numInV :: forall unit (dim :: [Factor Type]) (lcsu :: LCSU Type) f a . (ValidDLU dim lcsu unit, Functor f, Fractional a) => Qu dim lcsu (f a) -> unit -> f a

    units Data.Metrology.Linear

    Extracts a numerical value from a dimensioned quantity, expressed in the given unit. For example:

    inMeters :: Length -> Double
    inMeters x = numIn x Meter
    
    or
    inMeters x = x # Meter
    

  9. numIn :: forall unit (dim :: [Factor Type]) (lcsu :: LCSU Type) n . (ValidDLU dim lcsu unit, Fractional n) => Qu dim lcsu n -> unit -> n

    units Data.Metrology.Poly

    Extracts a numerical value from a dimensioned quantity, expressed in the given unit. For example:

    inMeters :: Length -> Double
    inMeters x = numIn x Meter
    
    or
    inMeters x = x # Meter
    

  10. numIn :: forall unit (dim :: [Factor Type]) (lcsu :: LCSU Type) n . (ValidDLU dim lcsu unit, VectorSpace n, Fractional (Scalar n)) => Qu dim lcsu n -> unit -> n

    units Data.Metrology.Vector

    Extracts a numerical value from a dimensioned quantity, expressed in the given unit. For example:

    inMeters :: Length -> Double
    inMeters x = numIn x Meter
    
    or
    inMeters x = x # Meter
    

Page 95 of many | Previous | Next