Hoogle Search

Within LTS Haskell 22.39 (ghc-9.6.6)

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

  1. concat :: [Text] -> Text

    text Data.Text

    O(n) Concatenate a list of Texts.

  2. concat :: [Stream Char] -> Stream Char

    text Data.Text.Internal.Fusion.Common

    O(n) Concatenate a list of streams. Properties

    unstream . concat . fmap stream  = concat
    

  3. concat :: [Text] -> Text

    text Data.Text.Lazy

    O(n) Concatenate a list of Texts.

  4. concat :: [ShortText] -> ShortText

    text-short Data.Text.Short

    Concatenate list of ShortTexts This is a type-specialised alias of mconcat.

    >>> concat []
    ""
    
    >>> concat ["foo","bar","doo"]
    "foobardoo"
    

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

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

    text 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
    

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

    text Data.Text.Lazy

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

  8. PrependedConcatenationMark :: Bool_

    text-icu Data.Text.ICU.Char

    No documentation available.

Page 1 of 1