Merge pull request 'lexer: introduce NewIsInRunes() shortcut for NewIsIn()' (#10)

Reviewed-on: #10
This commit was merged in pull request #10.
This commit is contained in:
2023-08-31 17:14:46 +02:00
+6
View File
@@ -21,6 +21,12 @@ func NewIsIn(s string) func(rune) bool {
}
}
// NewIsInRunes generates a rune condition checker that accepts
// the runes specified
func NewIsInRunes(s ...rune) func(rune) bool {
return NewIsIn(string(s))
}
// NewIsOneOf generates a run condition checker that accepts runes
// accepted by any of the given checkers
func NewIsOneOf(s ...func(rune) bool) func(rune) bool {