Closed jdegoes closed 4 years ago
Analogous to #11, this transducer would be limited to sources of either new-line delimited data, or nodes embedded in an array, am I missing some more low-level use case?
Just those two. If we hit them both for encoding and decoding, we'll have 99% of JSON streaming use cases
The
JsonDecode
type class can have a methoddecodeJsonTransducer
, which returns aZTransducer[Any, Exception, Char, A]
, which decodes character strings to values of typeA
.