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.
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
fromLazyUtf8As :: Textual α => p α -> ByteString -> Maybe αdata-textual Data.Textual Provide a hint for the type system when using fromLazyUtf8.
parseLazyAscii :: Textual α => ByteString -> Parsed αdata-textual Data.Textual Decode and parse a lazy ASCII ByteString to extract the Textual value.