MCPcopy Index your code
hub / github.com/benfry/processing4 / containsNonASCII

Method containsNonASCII

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

Source from the content-addressed store, hash-verified

734
735
736 static public boolean containsNonASCII(String what) {
737 for (char c : what.toCharArray()) {
738 if (c < 32 || c > 127) return true;
739 }
740 return false;
741 }
742
743
744 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers 2

getSettingsFolderMethod · 0.95
initFontMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected