MCPcopy Create free account
hub / github.com/google/re2j / lookingAt

Method lookingAt

java/com/google/re2j/Matcher.java:328–330  ·  view source on GitHub ↗

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

()

Source from the content-addressed store, hash-verified

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

Callers 2

testDocumentedExampleMethod · 0.95
verifyLookingAtMethod · 0.45

Calls 1

genMatchMethod · 0.95

Tested by 2

testDocumentedExampleMethod · 0.76
verifyLookingAtMethod · 0.36