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.
-
incremental-parser Text.ParserCombinators.Incremental.LeftBiasedLocal Converts a parser accepting one input type to another, just like 'mapMaybeInput except the two argument functions can demand more input by returning Nothing. If 'mapMaybeInput is defined for the two input inputs, then
mapInput f g == mapMaybeInput (Just . f) (Just . g)
-
incremental-parser Text.ParserCombinators.Incremental.Symmetric Converts a parser accepting one input type to another, just like 'mapMaybeInput except the two argument functions can demand more input by returning Nothing. If 'mapMaybeInput is defined for the two input inputs, then
mapInput f g == mapMaybeInput (Just . f) (Just . g)
mapMSEnv :: Monad m => (a -> m b) -> SEnv a -> m (SEnv b)liquid-fixpoint Language.Fixpoint.Types.Environments No documentation available.
mapMExpr :: Monad m => (Expr -> m Expr) -> Expr -> m Exprliquid-fixpoint Language.Fixpoint.Types.Visitor No documentation available.
-
liquidhaskell-boot Language.Haskell.Liquid.Types.Names No documentation available.
mapMeasureTy :: (ty0 -> ty1) -> MeasureV v ty0 ctor -> MeasureV v ty1 ctorliquidhaskell-boot Language.Haskell.Liquid.Types.Types No documentation available.
mapMeasureV :: (v -> v') -> MeasureV v ty ctor -> MeasureV v' ty ctorliquidhaskell-boot Language.Haskell.Liquid.Types.Types No documentation available.
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.
mapMaybe :: (Key -> Maybe Key) -> IntMultiSet -> IntMultiSetmultiset Data.IntMultiSet O(n). Map and collect the Just results.
mapMonotonic :: (Key -> Key) -> IntMultiSet -> IntMultiSetmultiset Data.IntMultiSet O(n). mapMonotonic f s == map f s, but works only when f is strictly monotonic. The precondition is not checked. Semi-formally, we have:
and [x < y ==> f x < f y | x <- ls, y <- ls] ==> mapMonotonic f s == map f s where ls = toList s