TrioReader
@Js
class TrioReader : Obj
Read Haystack data in Trio format.
Wrap input stream
Return recs as simple grid (no grid or column level meta)
Iterate through the entire stream reading dicts
Read all dicts from the stream and close it
Read next dict from the stream
Void eachDict(|Dict| f)
Iterate through the entire stream reading dicts. The stream is guaranteed to be closed when done.
new make(InStream in)
Wrap input stream
Dict[] readAllDicts()
Read all dicts from the stream and close it.
Dict? readDict(Bool checked)
Read next dict from the stream. If end of stream is detected then reutrn null or raise exception based on checked flag.
virtual Grid readGrid()
Return recs as simple grid (no grid or column level meta)