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.
-
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.
toLazyTextWith :: Int -> Builder -> Texttext 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.
fromLazyText :: Text -> Buildertext Data.Text.Lazy.Builder O(1). A Builder taking a lazy Text, satisfying
toLazyText (fromLazyText t) = t
-
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.
toLazyTextWith :: Int -> Builder -> Texttext 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.
fromLazyAscii :: Textual α => ByteString -> Maybe αdata-textual Data.Textual A shorthand for maybeParsed . parseLazyAscii
fromLazyAsciiAs :: Textual α => p α -> ByteString -> Maybe αdata-textual Data.Textual Provide a hint for the type system when using fromLazyAscii.
fromLazyText :: Textual α => Text -> Maybe αdata-textual Data.Textual A shorthand for maybeParsed . parseLazyText
fromLazyTextAs :: Textual α => p α -> Text -> Maybe αdata-textual Data.Textual Provide a hint for the type system when using fromLazyText.
fromLazyUtf8 :: Textual α => ByteString -> Maybe αdata-textual Data.Textual A shorthand for maybeParsed . parseLazyUtf8