glob/match/nothing.go

24 lines
348 B
Go
Raw Normal View History

2016-01-15 19:50:12 +03:00
package match
import (
"fmt"
)
type Nothing struct{}
func (self Nothing) Match(s string) bool {
return len(s) == 0
}
2016-02-02 22:03:37 +03:00
func (self Nothing) Index(s string, segments []int) (int, []int) {
return 0, append(segments, 0)
2016-01-15 19:50:12 +03:00
}
func (self Nothing) Len() int {
return lenZero
}
func (self Nothing) String() string {
return fmt.Sprintf("<nothing>")
}