Compare commits
2 Commits
3bd2c58fc3
...
8e4f759260
| Author | SHA1 | Date | |
|---|---|---|---|
| 8e4f759260 | |||
| 2ab838ea78 |
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user