update dependencies
This commit is contained in:
parent
95ebbb9d13
commit
d2678be96d
50 changed files with 3812 additions and 803 deletions
2
vendor/golang.org/x/text/runes/runes.go
generated
vendored
2
vendor/golang.org/x/text/runes/runes.go
generated
vendored
|
|
@ -33,7 +33,7 @@ func In(rt *unicode.RangeTable) Set {
|
|||
return setFunc(func(r rune) bool { return unicode.Is(rt, r) })
|
||||
}
|
||||
|
||||
// In creates a Set with a Contains method that returns true for all runes not
|
||||
// NotIn creates a Set with a Contains method that returns true for all runes not
|
||||
// in the given RangeTable.
|
||||
func NotIn(rt *unicode.RangeTable) Set {
|
||||
return setFunc(func(r rune) bool { return !unicode.Is(rt, r) })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue