pSpaceOrTab

fun <U : Any> pSpaceOrTab(): Parser<Char, Char, U>

Returns a Parser that consumes exactly one space (' ') or tab ('\t') character, whichever appears next in the input.

Return

a Parser that succeeds with the matched character.

See also