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

Method containsNonASCII

app/src/processing/app/Util.java:671–676  ·  view source on GitHub ↗
(String what)

Source from the content-addressed store, hash-verified

669
670
671 static public final boolean containsNonASCII(String what) {
672 for (char c : what.toCharArray()) {
673 if (c < 32 || c > 127) return true;
674 }
675 return false;
676 }
677}

Callers 2

getSettingsFolderMethod · 0.95
createFontMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected