Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
HsYAML Data.YAML.Token Begins mapping content.
-
HsYAML Data.YAML.Token Ends mapping content.
concatMap :: (ListLike full item, ListLike full' item') => (item -> full') -> full -> full'ListLike Data.ListLike Map a function over the items and concatenate the results. See also rigidConcatMap.
foldMap :: (FoldableLL full item, Monoid m) => (item -> m) -> full -> mListLike Data.ListLike Map each element to a monoid, then combine the results
rigidConcatMap :: ListLike full item => (item -> full) -> full -> fullListLike Data.ListLike Like concatMap, but without the possibility of changing the type of the item. This can have performance benefits for some things such as ByteString.
rigidMap :: ListLike full item => (item -> item) -> full -> fullListLike Data.ListLike Like map, but without the possibility of changing the type of the item. This can have performance benefits for things such as ByteStrings, since it will let the ByteString use its native low-level map implementation.
rigidMapM :: (ListLike full item, Monad m) => (item -> m item) -> full -> m fullListLike Data.ListLike Like mapM, but without the possibility of changing the type of the item. This can have performance benefits with some types.
concatMap :: (ListLike full item, ListLike full' item') => (item -> full') -> full -> full'ListLike Data.ListLike.Base Map a function over the items and concatenate the results. See also rigidConcatMap.
rigidConcatMap :: ListLike full item => (item -> full) -> full -> fullListLike Data.ListLike.Base Like concatMap, but without the possibility of changing the type of the item. This can have performance benefits for some things such as ByteString.
rigidMap :: ListLike full item => (item -> item) -> full -> fullListLike Data.ListLike.Base Like map, but without the possibility of changing the type of the item. This can have performance benefits for things such as ByteStrings, since it will let the ByteString use its native low-level map implementation.