anyMatch returns the regexpInfo describing a regexp that matches any string.
()
| 380 | // anyMatch returns the regexpInfo describing a regexp that |
| 381 | // matches any string. |
| 382 | func anyMatch() regexpInfo { |
| 383 | return regexpInfo{ |
| 384 | canEmpty: true, |
| 385 | prefix: []string{""}, |
| 386 | suffix: []string{""}, |
| 387 | match: allQuery, |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | // anyChar returns the regexpInfo describing a regexp that |
| 392 | // matches any single character. |
no outgoing calls
no test coverage detected
searching dependent graphs…