Matches checks if the given string matches the pattern.
(string)
| 20 | type Matcher interface { |
| 21 | // Matches checks if the given string matches the pattern. |
| 22 | Matches(string) bool |
| 23 | // String returns the string representation of the pattern. |
| 24 | String() string |
| 25 | } |
no outgoing calls