MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / charAt

Method charAt

vm/JavaAPI/src/java/util/Arrays.java:2898–2903  ·  view source on GitHub ↗
(String str, int i)

Source from the content-addressed store, hash-verified

2896 * index more than the length of this string.
2897 */
2898 private static int charAt(String str, int i) {
2899 if (i >= str.length()) {
2900 return -1;
2901 }
2902 return str.charAt(i);
2903 }
2904
2905 /**
2906 * Copies object from one array to another array with reverse of objects

Callers 2

medCharMethod · 0.95
stableStringSortMethod · 0.95

Calls 2

lengthMethod · 0.65
charAtMethod · 0.65

Tested by

no test coverage detected