Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. mapMeasureTy :: (ty0 -> ty1) -> MeasureV v ty0 ctor -> MeasureV v ty1 ctor

    liquidhaskell-boot Language.Haskell.Liquid.Types.Types

    No documentation available.

  2. mapMeasureV :: (v -> v') -> MeasureV v ty ctor -> MeasureV v' ty ctor

    liquidhaskell-boot Language.Haskell.Liquid.Types.Types

    No documentation available.

  3. mapRTAVars :: (a -> b) -> RTAlias a ty -> RTAlias b ty

    liquidhaskell-boot Language.Haskell.Liquid.Types.Types

    No documentation available.

  4. mapLogT :: (m a -> n b) -> LogT m a -> LogT n b

    log-base Log.Monad

    Transform the computation inside a LogT.

  5. mapping :: forall (k :: Type -> Type -> Type) a b . Category k => (a -> b) -> Machine (k a) b

    machines Data.Machine.Process

    Apply a function to all values coming from the input This can be constructed from a plan with

    mapping :: Category k => (a -> b) -> Machine (k a) b
    mapping f = repeatedly $ await >>= yield . f
    
    Examples:
    >>> runT $ mapping (*2) <~ source [1..3]
    [2,4,6]
    

  6. package map-syntax

    Syntax sugar for defining maps Haskell's canonical list of tuples syntax for defining maps is not very convenient and also has ambiguous semantics. This package leverages do notation to create a lighter syntax that makes semantics explicit and also allows the option of fail-fast handling of duplicate keys.

  7. mapK :: (k1 -> k2) -> MapSyntaxM k1 v a -> MapSyntax k2 v

    map-syntax Data.Map.Syntax

    Maps a function over all the keys.

  8. mapV :: (v1 -> v2) -> MapSyntaxM k v1 a -> MapSyntax k v2

    map-syntax Data.Map.Syntax

    Maps a function over all the values.

  9. mapExpr :: (Floating m, Floating n, Ord u, Ord v, Eq n, Ord m) => (n -> m) -> (v -> u) -> Expr v n -> Expr u m

    mfsolve Math.MFSolve

    map an expression using the given substitution.

  10. mapSimple :: (Floating m, Floating n) => (n -> m) -> (v -> u) -> SimpleExpr v n -> SimpleExpr u m

    mfsolve Math.MFSolve

    map a simple expression using the given substitution.

Page 249 of many | Previous | Next