Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
371 B
27 lines
371 B
package match |
|
|
|
import ( |
|
"fmt" |
|
) |
|
|
|
type Nothing struct{} |
|
|
|
func NewNothing() Nothing { |
|
return Nothing{} |
|
} |
|
|
|
func (self Nothing) Match(s string) bool { |
|
return len(s) == 0 |
|
} |
|
|
|
func (self Nothing) Index(s string) (int, []int) { |
|
return 0, segments0 |
|
} |
|
|
|
func (self Nothing) Len() int { |
|
return lenZero |
|
} |
|
|
|
func (self Nothing) String() string { |
|
return fmt.Sprintf("<nothing>") |
|
}
|
|
|