toChunks is:exact

O(c) Convert a LazyByteString into a list of StrictByteString
O(n) Convert a lazy Text into a list of strict Texts.
O(c) Convert a lazy ByteString into a list of strict ByteString
O(c) Convert a byte stream into a stream of individual strict bytestrings. This of course exposes the internal chunk structure.
This routine exposes the inner structure of the lazy number.
Deprecated: Please use readChunks instead
Convert a lazy ByteString to a serial stream of Array Word8.
Chunk a non-negative integer into words, least significatn first
The raw Text data that the Rope is built from
>>> toChunks "echo hello world" & Stdio.putChunks
hello world
Pre-release
The following code is equivalent to the shell command echo "hello world":
>>> :{
Process.toChunks "echo" ["hello world"]
& Stream.fold Stdio.writeChunks
:}
hello world
>>> toChunks = toChunksWith id