-
Notifications
You must be signed in to change notification settings - Fork 15
/
wildmatch.go
851 lines (747 loc) · 22.4 KB
/
wildmatch.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
package wildmatch
import (
"fmt"
"path/filepath"
"strings"
"unicode"
"unicode/utf8"
)
// opt is an option type for configuring a new Wildmatch instance.
type opt func(w *Wildmatch)
var (
// Basename allows the receiving Wildmatch to match paths where the
// pattern matches only the basename of the path when the pattern does
// not contain directory separators.
//
// If the pattern contains directory separators, or if this option is
// not given, the entire path will be matched.
Basename opt = func(w *Wildmatch) {
w.basename = true
}
// CaseFold allows the receiving Wildmatch to match paths with
// different case structuring as in the pattern.
CaseFold opt = func(w *Wildmatch) {
w.caseFold = true
}
// GitAttributes augments the functionality of the matching algorithm
// to match behavior of git when working with .gitattributes files.
GitAttributes opt = func(w *Wildmatch) {
w.gitattributes = true
}
// Contents indicates that if a pattern matches a directory that is a
// parent of a path, then that path is included. This is the behavior
// of patterns for .gitignore.
Contents opt = func(w *Wildmatch) {
w.contents = true
}
// SystemCase either folds or does not fold filepaths and patterns,
// according to whether or not the operating system on which Wildmatch
// runs supports case sensitive files or not.
SystemCase opt
)
const (
sep byte = '/'
)
// Wildmatch implements pattern matching against filepaths using the format
// described in the package documentation.
//
// For more, see documentation for package 'wildmatch'.
type Wildmatch struct {
// ts are the token set used to match the given pattern.
ts []token
// p is the raw pattern used to derive the token set.
p string
// basename indicates that this Wildmatch instance matches basenames
// when possible (i.e., when there are no directory separators in the
// pattern).
basename bool
// caseFold allows the instance Wildmatch to match patterns with the
// same character but different case structures.
caseFold bool
// gitattributes flag indicates that logic specific to the .gitattributes file
// should be used. The two main differences are that negative expressions are
// not allowed and directories are not matched.
gitattributes bool
// contents indicates that if a pattern matches a directory that is a
// parent of a path, then that path is included. This is the behavior
// of patterns for .gitignore.
contents bool
}
type MatchOpts struct {
IsDirectory bool
}
// NewWildmatch constructs a new Wildmatch instance which matches filepaths
// according to the given pattern and the rules for matching above.
//
// If the pattern is malformed, for instance, it has an unclosed character
// group, escape sequence, or character class, NewWildmatch will panic().
func NewWildmatch(p string, opts ...opt) *Wildmatch {
w := &Wildmatch{p: slashEscape(p)}
for _, opt := range opts {
opt(w)
}
if w.caseFold {
// Before parsing the pattern, convert it to lower-case.
w.p = strings.ToLower(w.p)
}
parts := strings.Split(w.p, string(sep))
if len(parts) > 1 {
w.basename = false
}
w.ts = w.parseTokens(parts)
return w
}
const (
// escapes is a constant string containing all escapable characters
escapes = "\\[]*?#"
)
// slashEscape converts paths "p" to POSIX-compliant path, independent of which
// escape character the host machine uses.
//
// slashEscape resepcts escapable sequences, and thus will not transform
// `foo\*bar` to `foo/*bar` on non-Windows operating systems.
func slashEscape(p string) string {
var pp string
for i := 0; i < len(p); {
c := p[i]
switch c {
case '\\':
if i+1 < len(p) && escapable(p[i+1]) {
pp += `\`
pp += string(p[i+1])
i += 2
} else {
pp += `/`
i += 1
}
default:
pp += string([]byte{c})
i += 1
}
}
return pp
}
// escapable returns whether the given "c" is escapable.
func escapable(c byte) bool {
return strings.IndexByte(escapes, c) > -1
}
// parseTokens parses a separated list of patterns into a sequence of
// representative Tokens that will compose the pattern when applied in sequence.
func (w *Wildmatch) parseTokens(dirs []string) []token {
if len(dirs) == 0 {
return make([]token, 0)
}
var finalComponents []token
if !w.gitattributes {
trailingIsEmpty := len(dirs) > 1 && dirs[len(dirs)-1] == ""
numNonEmptyDirs := len(dirs)
if trailingIsEmpty {
numNonEmptyDirs -= 1
}
if w.contents {
finalComponents = []token{&trailingComponents{}}
if trailingIsEmpty {
// Strip off the trailing empty string.
dirs = dirs[:numNonEmptyDirs]
}
}
// If we have one component, ignoring trailing empty
// components and we know that a directory is permissible…
if numNonEmptyDirs == 1 && (trailingIsEmpty || w.contents) {
// We don't have a slash in the middle, so this can go
// anywhere in the hierarchy. If there had been a slash
// here, it would have been anchored at the root.
rest := w.parseTokensSimple(dirs)
tokens := append([]token{&unanchoredDirectory{
Until: rest[0],
}})
// If we're not matching all contents, then do include
// the empty component so we don't match
// non-directories.
if finalComponents == nil && len(rest) > 1 {
finalComponents = rest[1:]
}
return append(tokens, finalComponents...)
}
}
components := w.parseTokensSimple(dirs)
return append(components, finalComponents...)
}
func (w *Wildmatch) parseTokensSimple(dirs []string) []token {
if len(dirs) == 0 {
return make([]token, 0)
}
switch dirs[0] {
case "":
if len(dirs) == 1 {
return []token{&component{fns: []componentFn{substring("")}}}
}
return w.parseTokensSimple(dirs[1:])
case "**":
rest := w.parseTokensSimple(dirs[1:])
if len(rest) == 0 {
// If there are no remaining tokens, return a lone
// doubleStar token.
return []token{&doubleStar{
Until: nil,
}}
}
// Otherwise, return a doubleStar token that will match greedily
// until the first component in the remainder of the pattern,
// and then the remainder of the pattern.
return append([]token{&doubleStar{
Until: rest[0],
}}, rest[1:]...)
default:
// Ordinarily, simply return the appropriate component, and
// continue on.
return append([]token{&component{
fns: parseComponent(dirs[0]),
}}, w.parseTokensSimple(dirs[1:])...)
}
}
// nonEmpty returns the non-empty strings in "all".
func nonEmpty(all []string) (ne []string) {
for _, x := range all {
if len(x) > 0 {
ne = append(ne, x)
}
}
return ne
}
// Match returns true if and only if the pattern matched by the receiving
// Wildmatch matches the entire filepath "t".
func (w *Wildmatch) Match(t string) bool {
dirs, ok := w.consume(t, MatchOpts{})
if !ok {
return false
}
return len(dirs) == 0
}
func (w *Wildmatch) MatchWithOpts(t string, opt MatchOpts) bool {
dirs, ok := w.consume(t, opt)
if !ok {
return false
}
return len(dirs) == 0
}
// consume performs the inner match of "t" against the receiver's pattern, and
// returns a slice of remaining directory paths, and whether or not there was a
// disagreement while matching.
func (w *Wildmatch) consume(t string, opt MatchOpts) ([]string, bool) {
if w.basename {
// If the receiving Wildmatch has basename set, the pattern
// matches only the basename of the given "t".
t = filepath.Base(t)
}
if w.caseFold {
// If the receiving Wildmatch is case insensitive, the pattern
// "w.p" will be lower-case.
//
// To preserve insensitivity, lower the given path "t", as well.
t = strings.ToLower(t)
}
var isDir bool
if opt.IsDirectory {
isDir = true
// Standardize the formation of subject string so directories always
// end with '/'
if !strings.HasSuffix(t, "/") {
t = t + "/"
}
} else {
isDir = strings.HasSuffix(t, string(sep))
}
dirs := strings.Split(t, string(sep))
// Git-attribute style matching can never match a directory
if w.gitattributes && isDir {
return dirs, false
}
// Match each directory token-wise, allowing each token to consume more
// than one directory in the case of the '**' pattern.
for _, tok := range w.ts {
var ok bool
dirs, ok = tok.Consume(dirs, isDir)
if !ok {
// If a pattern could not match the remainder of the
// filepath, return so immediately, along with the paths
// that we did successfully manage to match.
return dirs, false
}
}
// If this is a directory that we've otherwise matched and all we have
// left is an empty path component, then this is a match.
if isDir && len(dirs) == 1 && len(dirs[0]) == 0 {
return nil, true
}
return dirs, true
}
// String implements fmt.Stringer and returns the receiver's pattern in the format
// specified above.
func (w *Wildmatch) String() string {
return w.p
}
// token matches zero, one, or more directory components.
type token interface {
// Consume matches zero, one, or more directory components.
//
// Consider the following examples:
//
// (["foo", "bar", "baz"]) -> (["oo", "bar", baz"], true)
// (["foo", "bar", "baz"]) -> (["bar", baz"], true)
// (["foo", "bar", "baz"]) -> (["baz"], true)
// (["foo", "bar", "baz"]) -> ([], true)
// (["foo", "bar", "baz"]) -> (["foo", "bar", "baz"], false)
// (["foo", "bar", "baz"]) -> (["oo", "bar", "baz"], false)
// (["foo", "bar", "baz"]) -> (["bar", "baz"], false)
//
// The Consume operation can reduce the size of a single entry in the
// slice (see: example (1) above), or remove it entirely, (see: examples
// (2), (3), and (4) above). It can also refuse to match forward after
// making any amount of progress (see: examples (5), (6), and (7)
// above).
//
// Consume accepts a slice representing a path-delimited filepath on
// disk, and a bool indicating whether the given path is a directory
// (i.e., "foo/bar/" is, but "foo/bar" isn't).
Consume(path []string, isDir bool) ([]string, bool)
// String returns the string representation this component of the
// pattern; i.e., a string that, when parsed, would form the same token.
String() string
}
// doubleStar is an implementation of the Token interface which greedily matches
// one-or-more path components until a successor token.
type doubleStar struct {
Until token
EmptyPath bool
}
// Consume implements token.Consume as above.
func (d *doubleStar) Consume(path []string, isDir bool) ([]string, bool) {
if len(path) == 0 {
return path, d.EmptyPath
}
// If there are no remaining tokens to match, allow matching the entire
// path.
if d.Until == nil {
return nil, true
}
for i := len(path); i > 0; i-- {
rest, ok := d.Until.Consume(path[i:], false)
if ok {
return rest, ok
}
}
// If no match has been found, we assume that the '**' token matches the
// empty string, and defer pattern matching to the rest of the path.
return d.Until.Consume(path, isDir)
}
// String implements Component.String.
func (d *doubleStar) String() string {
if d.Until == nil {
return "**"
}
return fmt.Sprintf("**/%s", d.Until.String())
}
// unanchoredDirectory is an implementation of the Token interface which
// greedily matches one-or-more path components until a successor token.
type unanchoredDirectory struct {
Until token
}
// Consume implements token.Consume as above.
func (d *unanchoredDirectory) Consume(path []string, isDir bool) ([]string, bool) {
// This matches the same way as a doubleStar, so just use that
// implementation.
s := &doubleStar{Until: d.Until}
return s.Consume(path, isDir)
}
// String implements Component.String.
func (d *unanchoredDirectory) String() string {
return fmt.Sprintf("%s/", d.Until.String())
}
// trailingComponents is an implementation of the Token interface which
// greedily matches any trailing components, even if empty.
type trailingComponents struct {
}
// Consume implements token.Consume as above.
func (d *trailingComponents) Consume(path []string, isDir bool) ([]string, bool) {
// This matches the same way as a doubleStar, so just use that
// implementation.
s := &doubleStar{Until: nil, EmptyPath: true}
return s.Consume(path, isDir)
}
// String implements Component.String.
func (d *trailingComponents) String() string {
return ""
}
// componentFn is a functional type designed to match a single component of a
// directory structure by reducing the unmatched part, and returning whether or
// not a match was successful.
type componentFn interface {
Apply(s string) (rest string, ok bool)
String() string
}
// cfn is a wrapper type for the Component interface that includes an applicable
// function, and a string that represents it.
type cfn struct {
fn func(s string) (rest string, ok bool)
str string
}
// Apply executes the component function as described above.
func (c *cfn) Apply(s string) (rest string, ok bool) {
return c.fn(s)
}
// String returns the string representation of this component.
func (c *cfn) String() string {
return c.str
}
// component is an implementation of the Token interface, which matches a single
// component at the front of a tree structure by successively applying
// implementations of the componentFn type.
type component struct {
// fns is the list of componentFn implementations to be successively
// applied.
fns []componentFn
}
// parseComponent parses a single component from its string representation,
// including wildcards, character classes, string literals, and escape
// sequences.
func parseComponent(s string) []componentFn {
if len(s) == 0 {
// The empty string represents the absence of componentFn's.
return make([]componentFn, 0)
}
switch s[0] {
case '\\':
// If the first character is a '\', the following character is a
// part of an escape sequence, or it is unclosed.
if len(s) < 2 {
panic("wildmatch: unclosed escape sequence")
}
literal := substring(string(s[1]))
var rest []componentFn
if len(s) > 2 {
// If there is more to follow, i.e., "\*foo", then parse
// the remainder.
rest = parseComponent(s[2:])
}
return cons(literal, rest)
case '[':
var (
// i will denote the currently-inspected index of the character
// group.
i int = 1
// include will denote the list of included runeFn's
// composing the character group.
include []runeFn
// exclude will denote the list of excluded runeFn's
// composing the character group.
exclude []runeFn
// run is the current run of strings (to either compose
// a range, or select "any")
run string
// neg is whether we have seen a negation marker.
neg bool
)
for i < len(s) {
if s[i] == '^' || s[i] == '!' {
// Once a '^' or '!' character has been seen,
// anything following it will be negated.
neg = !neg
i = i + 1
} else if strings.HasPrefix(s[i:], "[:") {
close := strings.Index(s[i:], ":]")
if close < 0 {
panic("unclosed character class")
}
if close == 1 {
// The case "[:]" has a prefix "[:", and
// a suffix ":]", but the atom refers to
// a character group including the
// literal ":", not an ill-formed
// character class.
//
// Parse it as such; increment one
// _less_ than expected, to terminate
// the group.
run += "[:]"
i = i + 2
continue
}
// Find the associated character class.
name := strings.TrimPrefix(
strings.ToLower(s[i:i+close]), "[:")
fn, ok := classes[name]
if !ok {
panic(fmt.Sprintf("wildmatch: unknown class: %q", name))
}
include, exclude = appendMaybe(!neg, include, exclude, fn)
// Advance to the first index beyond the closing
// ":]".
i = i + close + 2
} else if s[i] == '-' {
if i < len(s) {
// If there is a range marker at the
// non-final position, construct a range
// and an optional "any" match:
var start, end byte
if len(run) > 0 {
// If there is at least one
// character in the run, use it
// as the starting point of the
// range, and remove it from the
// run.
start = run[len(run)-1]
run = run[:len(run)-1]
}
end = s[i+1]
if len(run) > 0 {
// If there is still information
// in the run, construct a rune
// function matching any
// characters in the run.
cfn := anyRune(run)
include, exclude = appendMaybe(!neg, include, exclude, cfn)
run = ""
}
// Finally, construct the rune range and
// add it appropriately.
bfn := between(rune(start), rune(end))
include, exclude = appendMaybe(!neg,
include, exclude, bfn)
i = i + 2
} else {
// If this is in the final position, add
// it to the run and exit the loop.
run = run + "-"
i = i + 2
}
} else if s[i] == '\\' {
// If we encounter an escape sequence in the
// group, check its bounds and add it to the
// run.
if i+1 >= len(s) {
panic("wildmatch: unclosed escape")
}
run = run + string(s[i+1])
i = i + 2
} else if s[i] == ']' {
// If we encounter a closing ']', then stop
// parsing the group.
break
} else {
// Otherwise, add the character to the run and
// advance forward.
run = run + string(s[i])
i = i + 1
}
}
if len(run) > 0 {
fn := anyRune(run)
include, exclude = appendMaybe(!neg, include, exclude, fn)
}
var rest string
if i+1 < len(s) {
rest = s[i+1:]
}
// Assemble a character class, and cons it in front of the
// remainder of the component pattern.
return cons(charClass(include, exclude), parseComponent(rest))
case '?':
return []componentFn{wildcard(1, parseComponent(s[1:]))}
case '*':
return []componentFn{wildcard(-1, parseComponent(s[1:]))}
default:
// Advance forward until we encounter a special character
// (either '*', '[', '*', or '?') and parse across the divider.
var i int
for ; i < len(s); i++ {
if s[i] == '[' ||
s[i] == '*' ||
s[i] == '?' ||
s[i] == '\\' {
break
}
}
return cons(substring(s[:i]), parseComponent(s[i:]))
}
}
// appendMaybe appends the value "x" to either "a" or "b" depending on "yes".
func appendMaybe(yes bool, a, b []runeFn, x runeFn) (ax, bx []runeFn) {
if yes {
return append(a, x), b
}
return a, append(b, x)
}
// cons prepends the "head" componentFn to the "tail" of componentFn's.
func cons(head componentFn, tail []componentFn) []componentFn {
return append([]componentFn{head}, tail...)
}
// Consume implements token.Consume as above by applying the above set of
// componentFn's in succession to the first element of the path tree.
func (c *component) Consume(path []string, isDir bool) ([]string, bool) {
if len(path) == 0 {
return path, false
}
head := path[0]
for _, fn := range c.fns {
var ok bool
// Apply successively the component functions to make progress
// matching the head.
if head, ok = fn.Apply(head); !ok {
// If any of the functions failed to match, there are
// no other paths to match success, so return a failure
// immediately.
return path, false
}
}
if len(head) > 0 {
return append([]string{head}, path[1:]...), false
}
if len(path) == 1 {
// Components can not match directories. If we were matching the
// last path in a tree structure, we can only match if it
// _wasn't_ a directory.
return path[1:], true
}
return path[1:], true
}
// String implements token.String.
func (c *component) String() string {
var str string
for _, fn := range c.fns {
str += fn.String()
}
return str
}
// substring returns a componentFn that matches a prefix of "sub".
func substring(sub string) componentFn {
return &cfn{
fn: func(s string) (rest string, ok bool) {
if !strings.HasPrefix(s, sub) {
return s, false
}
return s[len(sub):], true
},
str: sub,
}
}
// wildcard returns a componentFn that greedily matches until a set of other
// component functions no longer matches.
func wildcard(n int, fns []componentFn) componentFn {
until := func(s string) (string, bool) {
head := s
for _, fn := range fns {
var ok bool
if head, ok = fn.Apply(head); !ok {
return s, false
}
}
if len(head) > 0 {
return s, false
}
return "", true
}
var str string = "*"
for _, fn := range fns {
str += fn.String()
}
return &cfn{
fn: func(s string) (rest string, ok bool) {
if n > -1 {
if n > len(s) {
return "", false
}
return until(s[n:])
}
for i := len(s); i > 0; i-- {
rest, ok = until(s[i:])
if ok {
return rest, ok
}
}
return until(s)
},
str: str,
}
}
// charClass returns a component function emulating a character class, i.e.,
// that a single character can match if and only if it is included in one of the
// includes (or true if there were no includes) and none of the excludes.
func charClass(include, exclude []runeFn) componentFn {
return &cfn{
fn: func(s string) (rest string, ok bool) {
if len(s) == 0 {
return s, false
}
// Find "r", the first rune in the string "s".
r, l := utf8.DecodeRuneInString(s)
var match bool
for _, ifn := range include {
// Attempt to find a match on "r" with "ifn".
if ifn(r) {
match = true
break
}
}
// If there wasn't a match and there were some including
// patterns, return a failure to match. Otherwise, continue on
// to make sure that no patterns exclude the rune "r".
if !match && len(include) != 0 {
return s, false
}
for _, efn := range exclude {
// Attempt to find a negative match on "r" with "efn".
if efn(r) {
return s, false
}
}
// If we progressed this far, return the remainder of the
// string.
return s[l:], true
},
str: "<charclass>",
}
}
// runeFn matches a single rune.
type runeFn func(rune) bool
var (
// classes is a mapping from character class name to a rune function
// that implements its behavior.
classes = map[string]runeFn{
"alnum": func(r rune) bool {
return unicode.In(r, unicode.Number, unicode.Letter)
},
"alpha": unicode.IsLetter,
"blank": func(r rune) bool {
return r == ' ' || r == '\t'
},
"cntrl": unicode.IsControl,
"digit": unicode.IsDigit,
"graph": unicode.IsGraphic,
"lower": unicode.IsLower,
"print": unicode.IsPrint,
"punct": unicode.IsPunct,
"space": unicode.IsSpace,
"upper": unicode.IsUpper,
"xdigit": func(r rune) bool {
return unicode.IsDigit(r) ||
('a' <= r && r <= 'f') ||
('A' <= r && r <= 'F')
},
}
)
// anyRune returns true so long as the rune "r" appears in the string "s".
func anyRune(s string) runeFn {
return func(r rune) bool {
return strings.IndexRune(s, r) > -1
}
}
// between returns true so long as the rune "r" appears between "a" and "b".
func between(a, b rune) runeFn {
if b < a {
a, b = b, a
}
return func(r rune) bool {
return a <= r && r <= b
}
}