(pattern string)
| 131 | type CaseFinder Finder |
| 132 | |
| 133 | func NewCaseFinder(pattern string) *CaseFinder { |
| 134 | return (*CaseFinder)(NewFinder(strings.ToLower(pattern))) |
| 135 | } |
| 136 | |
| 137 | // Next returns the index in text of the first occurrence of the pattern. If |
| 138 | // the pattern is not found, it returns -1. |
no test coverage detected