MCPcopy Index your code
hub / github.com/processing/processing / more

Method more

core/src/processing/data/JSONTokener.java:133–140  ·  view source on GitHub ↗

Determine if the source string still contains characters that next() can consume. @return true if not yet at the end of the source.

()

Source from the content-addressed store, hash-verified

131 * @return true if not yet at the end of the source.
132 */
133 public boolean more() {
134 this.next();
135 if (this.end()) {
136 return false;
137 }
138 this.back();
139 return true;
140 }
141
142
143 /**

Callers

nothing calls this directly

Calls 3

nextMethod · 0.95
endMethod · 0.95
backMethod · 0.95

Tested by

no test coverage detected