@return {@code true} if the processor wants to continue the loop and handle the next byte in the buffer. {@code false} if the processor wants to stop handling bytes and abort the loop.
Aborts on a ascii space character ({@code ' '}).
Aborts on a comma {@code (',')}.
Aborts on a {@code CR ('\r')}.
Aborts on a {@code CR ('\r')} or a {@code LF ('\n')}.
Aborts on a {@code LF ('\n')}.
Aborts on a linear whitespace (a ({@code ' '} or a {@code '\t'}).
Aborts on a non-{@code CR ('\r')}.
Aborts on a byte which is neither a {@code CR ('\r')} nor a {@code LF ('\n')}.
Aborts on a non-{@code LF ('\n')}.
Aborts on a byte which is not a linear whitespace (neither {@code ' '} nor {@code '\t'}).
Aborts on a non-{@code NUL (0x00)}.
Aborts on a {@code NUL (0x00)}.
Aborts on a semicolon {@code (';')}.
Provides a mechanism to iterate over a collection of bytes.