Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. toLazyText :: Builder -> Text

    text Data.Text.Internal.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.

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

    text Data.Text.Internal.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.

  3. fromLazyText :: Text -> Builder

    text Data.Text.Lazy.Builder

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

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

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

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

    data-textual Data.Textual

    A shorthand for maybeParsed . parseLazyAscii

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

    data-textual Data.Textual

    Provide a hint for the type system when using fromLazyAscii.

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

    data-textual Data.Textual

    A shorthand for maybeParsed . parseLazyText

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

    data-textual Data.Textual

    Provide a hint for the type system when using fromLazyText.

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

    data-textual Data.Textual

    A shorthand for maybeParsed . parseLazyUtf8

Page 2 of many | Previous | Next