Decodes a progressive JSON byte stream into a Stream of T.
T
Stream<T> fromProgressiveJsonStream(Stream<List<int>> bytes) { return ProgressiveJsonDecoder.decode<T>(bytes, this); }