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.

  1. BeginMapping :: Code

    HsYAML Data.YAML.Token

    Begins mapping content.

  2. EndMapping :: Code

    HsYAML Data.YAML.Token

    Ends mapping content.

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

  4. foldMap :: (FoldableLL full item, Monoid m) => (item -> m) -> full -> m

    ListLike Data.ListLike

    Map each element to a monoid, then combine the results

  5. rigidConcatMap :: ListLike full item => (item -> full) -> full -> full

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

  6. rigidMap :: ListLike full item => (item -> item) -> full -> full

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

  7. rigidMapM :: (ListLike full item, Monad m) => (item -> m item) -> full -> m full

    ListLike Data.ListLike

    Like mapM, but without the possibility of changing the type of the item. This can have performance benefits with some types.

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

  9. rigidConcatMap :: ListLike full item => (item -> full) -> full -> full

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

  10. rigidMap :: ListLike full item => (item -> item) -> full -> full

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

Page 591 of many | Previous | Next