This predicate indicates whether or not the given character is a newline character.
The character to test
true if the character is a newline, false otherwise.
assert(isNewline('\n')); assert(!isNewline('a')); assert(!isNewline(' '));
See Implementation
This predicate indicates whether or not the given character is a newline character.