Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

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

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

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

    No documentation available.

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

    log-base Log.Monad

    Transform the computation inside a LogT.

  3. 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]
    

  4. 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.

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

    map-syntax Data.Map.Syntax

    Maps a function over all the keys.

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

    map-syntax Data.Map.Syntax

    Maps a function over all the values.

  7. 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.

  8. 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.

  9. mapM :: MonadParallel m => (a -> m b) -> [a] -> m [b]

    monad-parallel Control.Monad.Parallel

    Like mapM, but applying the function to the individual list items in parallel.

  10. mapM_ :: MonadParallel m => (a -> m b) -> [a] -> m ()

    monad-parallel Control.Monad.Parallel

    Like mapM_, but applying the function to the individual list items in parallel.

Page 251 of many | Previous | Next