Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
concatMap :: (Word8 -> ByteString) -> ByteString -> ByteStringbytestring Data.ByteString.Lazy Map a function over a ByteString and concatenate the results
concatMap :: (Char -> ByteString) -> ByteString -> ByteStringbytestring Data.ByteString.Lazy.Char8 Map a function over a ByteString and concatenate the results
concatMap :: (Char -> Text) -> Text -> Texttext Data.Text O(n) Map a function over a Text that results in a Text, and concatenate the results.
module Data.Text.Internal.Fusion.
CaseMapping No documentation available.
foldMapping :: Char# -> Int64#text Data.Text.Internal.Fusion.CaseMapping No documentation available.
lowerMapping :: Char# -> Int64#text Data.Text.Internal.Fusion.CaseMapping No documentation available.
titleMapping :: Char# -> Int64#text Data.Text.Internal.Fusion.CaseMapping No documentation available.
upperMapping :: Char# -> Int64#text Data.Text.Internal.Fusion.CaseMapping No documentation available.
concatMap :: (Char -> Stream Char) -> Stream Char -> Stream Chartext Data.Text.Internal.Fusion.Common Map a function over a stream that results in a stream and concatenate the results. Properties
unstream . concatMap (stream . f) . stream = concatMap f
concatMap :: (Char -> Text) -> Text -> Texttext Data.Text.Lazy O(n) Map a function over a Text that results in a Text, and concatenate the results.