Hoogle Search

Within LTS Haskell 23.25 (ghc-9.8.4)

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

  1. fromLazyText :: Text -> Builder

    text Data.Text.Lazy.Builder

    O(1). A Builder taking a lazy Text, satisfying

  2. toLazyText :: Builder -> Text

    text Data.Text.Lazy.Builder

    O(n). Extract a lazy Text from a Builder with a default buffer size. The construction work takes place if and when the relevant part of the lazy Text is demanded.

  3. toLazyTextWith :: Int -> Builder -> Text

    text Data.Text.Lazy.Builder

    O(n). Extract a lazy Text from a Builder, using the given size for the initial buffer. The construction work takes place if and when the relevant part of the lazy Text is demanded. If the initial buffer is too small to hold all data, subsequent buffers will be the default buffer size.

  4. fromLazyAscii :: Textual α => ByteString -> Maybe α

    data-textual Data.Textual

    A shorthand for maybeParsed . parseLazyAscii

  5. fromLazyAsciiAs :: Textual α => p α -> ByteString -> Maybe α

    data-textual Data.Textual

    Provide a hint for the type system when using fromLazyAscii.

  6. fromLazyText :: Textual α => Text -> Maybe α

    data-textual Data.Textual

    A shorthand for maybeParsed . parseLazyText

  7. fromLazyTextAs :: Textual α => p α -> Text -> Maybe α

    data-textual Data.Textual

    Provide a hint for the type system when using fromLazyText.

  8. fromLazyUtf8 :: Textual α => ByteString -> Maybe α

    data-textual Data.Textual

    A shorthand for maybeParsed . parseLazyUtf8

  9. fromLazyUtf8As :: Textual α => p α -> ByteString -> Maybe α

    data-textual Data.Textual

    Provide a hint for the type system when using fromLazyUtf8.

  10. parseLazyAscii :: Textual α => ByteString -> Parsed α

    data-textual Data.Textual

    Decode and parse a lazy ASCII ByteString to extract the Textual value.

Page 2 of many | Previous | Next