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

Method pop

java/com/google/re2j/Parser.java:751–755  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

749 // Returns the rune at the cursor position, and advances the cursor
750 // past it. Precondition: |more()|.
751 int pop() {
752 int r = str.codePointAt(pos);
753 pos += Character.charCount(r);
754 return r;
755 }
756
757 // Equivalent to both peek() == c but more efficient because we
758 // don't support surrogates. Precondition: |more()|.

Callers 1

parseInternalMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected