Hoogle Search
Within LTS Haskell 24.18 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
- 
servant Servant.Types.SourceT Filter values.
>>> toList $ mapMaybe (\x -> if odd x then Just x else Nothing) (source [0..10]) :: [Int] [1,3,5,7,9]
>>> mapMaybe (\x -> if odd x then Just x else Nothing) (source [0..2]) :: SourceT Identity Int fromStepT (Effect (Identity (Skip (Yield 1 (Skip Stop)))))
Illustrates why we need Skip. - 
servant Servant.Types.SourceT No documentation available.
 - 
th-abstraction Language.Haskell.TH.Datatype.TyVarBndr Map over the components of a TyVarBndr in a monadic fashion. This is the same as traverseTV, but with a Monad constraint. This is mainly useful for use with old versions of base where Applicative was not a superclass of Monad.
 mapMTVFlag :: Monad m => (flag -> m flag') -> TyVarBndr_ flag -> m (TyVarBndr_ flag')th-abstraction Language.Haskell.TH.Datatype.TyVarBndr Map over the flag of a TyVarBndr in a monadic fashion. This is the same as traverseTVFlag, but with a Monad constraint. This is mainly useful for use with old versions of base where Applicative was not a superclass of Monad.
mapMTVKind :: Monad m => (Kind -> m Kind) -> TyVarBndr_ flag -> m (TyVarBndr_ flag)th-abstraction Language.Haskell.TH.Datatype.TyVarBndr Map over the Kind of a TyVarBndr in a monadic fashion. This is the same as traverseTVKind, but with a Monad constraint. This is mainly useful for use with old versions of base where Applicative was not a superclass of Monad.
mapMTVName :: Monad m => (Name -> m Name) -> TyVarBndr_ flag -> m (TyVarBndr_ flag)th-abstraction Language.Haskell.TH.Datatype.TyVarBndr Map over the Name of a TyVarBndr in a monadic fashion. This is the same as traverseTVName, but with a Monad constraint. This is mainly useful for use with old versions of base where Applicative was not a superclass of Monad.
mapMG :: (ModSummary -> ModSummary) -> ModuleGraph -> ModuleGraphghc GHC Map a function f over all the ModSummaries. To preserve invariants f can't change the isBoot status.
mapMap :: (a -> v) -> LabelMap a -> LabelMap vghc GHC.Cmm.Dataflow.Label No documentation available.
mapMapWithKey :: (Label -> a -> v) -> LabelMap a -> LabelMap vghc GHC.Cmm.Dataflow.Label No documentation available.
mapMember :: Label -> LabelMap a -> Boolghc GHC.Cmm.Dataflow.Label No documentation available.