input range composed of elements type of const(ubyte)[]. chunks can use the same buffer for each chunk.
initial output buffer length. Minimum value is 32.
ASDF value
import std.range: chunks; auto text = cast(const ubyte[])`true `; auto ch = text.chunks(3); assert(ch.parseJson(32).data == [1]);
Parses json value