MCPcopy Index your code
hub / github.com/clojure/clojure / isPosDigit

Method isPosDigit

src/jvm/clojure/lang/Util.java:259–264  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

257}
258
259static boolean isPosDigit(String s) {
260 if(s.length() != 1)
261 return false;
262 char ch = s.charAt(0);
263 return ch <= '9' && ch >= '1';
264}
265
266public static Symbol arrayTypeToSymbol(Class c) {
267 int dim = 0;

Callers 2

looksLikeArrayClassMethod · 0.95
analyzeSymbolMethod · 0.95

Calls 1

lengthMethod · 0.65

Tested by

no test coverage detected