2016-01-15 19:50:12 +03:00
|
|
|
package match
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Nothing struct{}
|
|
|
|
|
2016-02-24 12:36:15 +03:00
|
|
|
func NewNothing() Nothing {
|
|
|
|
return Nothing{}
|
|
|
|
}
|
|
|
|
|
2016-01-15 19:50:12 +03:00
|
|
|
func (self Nothing) Match(s string) bool {
|
|
|
|
return len(s) == 0
|
|
|
|
}
|
|
|
|
|
2016-02-05 17:29:41 +03:00
|
|
|
func (self Nothing) Index(s string) (int, []int) {
|
2016-02-23 14:46:20 +03:00
|
|
|
return 0, segments0
|
2016-01-15 19:50:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (self Nothing) Len() int {
|
|
|
|
return lenZero
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self Nothing) String() string {
|
|
|
|
return fmt.Sprintf("<nothing>")
|
|
|
|
}
|