Hoogle Search
Within LTS Haskell 22.42 (ghc-9.6.6)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
text Data.Text O(n) Concatenate a list of Texts.
concat :: [Stream Char] -> Stream Chartext Data.Text.Internal.Fusion.Common O(n) Concatenate a list of streams. Properties
unstream . concat . fmap stream = concat
-
text Data.Text.Lazy O(n) Concatenate a list of Texts.
concat :: [ShortText] -> ShortTexttext-short Data.Text.Short Concatenate list of ShortTexts This is a type-specialised alias of mconcat.
>>> concat [] ""
>>> concat ["foo","bar","doo"] "foobardoo"
concatMap :: (Char -> Text) -> Text -> Texttext Data.Text O(n) Map a function over a Text that results in a Text, and concatenate the results.
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.
PrependedConcatenationMark :: Bool_text-icu Data.Text.ICU.Char No documentation available.
Page 1 of 1