Returns a BufferedIterator with two extra methods: remaining, which returns the number of characters left to consume, and "freeze".
Returns a BufferedIterator with two extra methods: remaining, which returns the number of characters left to consume, and "freeze". which produces a WrappedCharArray containing the remaining characters without copying.
a copy of the slice of the underlying array.
Convert this WrappedCharArray
into a CharBuffer
.
Convert this WrappedCharArray
into a CharBuffer
.
The underlying array-slice as a (read-only) CharBuffer.
The underlying array-slice as a String.
A container for a slice of an
Array[Char]
which promises to allow only read-only access to that array. Note it does not itself copy the array, so if there is another reference the data can be mutated by other operations.