Hoogle Search
Within LTS Haskell 24.43 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
unjsonToByteStringBuilder'' :: Int -> Options -> UnjsonDef a -> a -> Builderunjson Data.Unjson Given a definition of a value and a value produce a Builder. Useful when JSON serialization is a part of a bigger serialization function.
unjsonToByteStringLazy :: UnjsonDef a -> a -> ByteStringunjson Data.Unjson Given a definition of a value and a value produce a ByteString. Example:
let v = Thing { ... } let utf8bsrep = unjsonToByteStringLazy unjsonThing vunjsonToByteStringLazy' :: Options -> UnjsonDef a -> a -> ByteStringunjson Data.Unjson Given a definition of a value and a value produce a ByteString. Also takes formatting Options. Example:
let v = Thing { ... } let utf8bsrep = unjsonToByteStringLazy' options unjsonThing v-
Aeson instances for URI Bytestring Aeson instances for URI Bytestring
requestBodyToByteString :: RequestBody -> IO LazyByteStringvcr WebMock.Util No documentation available.
indexedCursorFromByteString :: ByteString -> Either SomeException IndexedCursorxml-indexed-cursor Text.XML.Cursor.Indexed Similar to indexedCursorFromByteString_ but uses parseLBS instead of parseLBS_.
-
xml-indexed-cursor Text.XML.Cursor.Indexed Similar to indexedCursorFromByteString but also takes ParseSettings.
indexedCursorFromByteStringWithOpts_ :: ParseSettings -> ByteString -> IndexedCursorxml-indexed-cursor Text.XML.Cursor.Indexed Similar to indexedCursorFromByteString_ but also takes ParseSettings.
indexedCursorFromByteString_ :: ByteString -> IndexedCursorxml-indexed-cursor Text.XML.Cursor.Indexed This reads a Document from a ByteString with parseLBS_, and then converts that Document to an IndexedCursor.
parseByteString :: Element a -> ByteString -> Either Text axml-parser XmlParser Parse XML bytestring.