Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. primMapListFixed :: FixedPrim a -> [a] -> Builder

    bytestring Data.ByteString.Builder.Prim

    Encode a list of values from left-to-right with a FixedPrim.

  2. contramapB :: (b -> a) -> BoundedPrim a -> BoundedPrim b

    bytestring Data.ByteString.Builder.Prim.Internal

    Change a BoundedPrim such that it first applies a function to the value to be encoded. Note that BoundedPrims are Contravariant http://hackage.haskell.org/package/contravariant. Hence, the following laws hold.

    contramapB id = id
    contramapB f . contramapB g = contramapB (g . f)
    

  3. contramapF :: (b -> a) -> FixedPrim a -> FixedPrim b

    bytestring Data.ByteString.Builder.Prim.Internal

    Change a primitives such that it first applies a function to the value to be encoded. Note that primitives are Contravariant http://hackage.haskell.org/package/contravariant. Hence, the following laws hold.

    contramapF id = id
    contramapF f . contramapF g = contramapF (g . f)
    

  4. concatMap :: (Char -> ByteString) -> ByteString -> ByteString

    bytestring Data.ByteString.Char8

    Map a function over a ByteString and concatenate the results

  5. concatMap :: (Word8 -> ByteString) -> ByteString -> ByteString

    bytestring Data.ByteString.Lazy

    Map a function over a ByteString and concatenate the results

  6. concatMap :: (Char -> ByteString) -> ByteString -> ByteString

    bytestring Data.ByteString.Lazy.Char8

    Map a function over a ByteString and concatenate the results

  7. concatMap :: (Char -> Text) -> Text -> Text

    text Data.Text

    O(n) Map a function over a Text that results in a Text, and concatenate the results.

  8. module Data.Text.Internal.Fusion.CaseMapping

    No documentation available.

  9. foldMapping :: Char# -> Int64#

    text Data.Text.Internal.Fusion.CaseMapping

    No documentation available.

  10. lowerMapping :: Char# -> Int64#

    text Data.Text.Internal.Fusion.CaseMapping

    No documentation available.

Page 402 of many | Previous | Next