Matches the beginning of input against the pattern (anchored start). If there is a match, lookingAt sets the match state to describe it. @return true if the beginning of the input matches the pattern
()
| 326 | * @return true if the beginning of the input matches the pattern |
| 327 | */ |
| 328 | public boolean lookingAt() { |
| 329 | return genMatch(0, RE2.ANCHOR_START); |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Matches the input against the pattern (unanchored). The search begins at the end of the last |