glob/match/min.go

31 lines
418 B
Go
Raw Normal View History

2016-01-08 20:14:31 +03:00
package match
2016-01-09 02:34:41 +03:00
import (
"fmt"
"unicode/utf8"
)
2016-01-08 20:14:31 +03:00
type Min struct {
Limit int
}
func (self Min) Match(s string) bool {
2016-01-09 02:34:41 +03:00
return utf8.RuneCountInString(s) >= self.Limit
}
func (self Min) Len() int {
return -1
2016-01-08 20:14:31 +03:00
}
func (self Min) Search(s string) (int, int, bool) {
return 0, 0, false
}
func (self Min) Kind() Kind {
return KindMin
}
func (self Min) String() string {
return fmt.Sprintf("[min:%d]", self.Limit)
}