char_is_eq(c1, @rest ...)
char_is_lt(c1, @rest ...)
char_is_gt(c1, @rest ...)
char_is_lteq(c1, @rest ...)
char_is_gteq(c1, @rest ...)
char_is_ci_eq(c1, @rest ...)
char_is_ci_lt(c1, @rest ...)
char_is_ci_gt(c1, @rest ...)
char_is_ci_lteq(c1, @rest ...)
char_is_ci_gteq(c1, @rest ...)
Predicates for comparing characters. Return true
if the relation holds,
otherwise return false
.
The char_is_ci_***
predicates ignores the case of the characters being compared.
char_is_eq(\a, \A)
// false
char_is_ci_eq(\a, \A)
// true