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

Method charAt

Ports/CLDC11/src/java/util/Arrays.java:3067–3072  ·  view source on GitHub ↗
(String str, int i)

Source from the content-addressed store, hash-verified

3065 * index more than the length of this string.
3066 */
3067 private static int charAt(String str, int i) {
3068 if (i >= str.length()) {
3069 return -1;
3070 }
3071 return str.charAt(i);
3072 }
3073
3074 /// Copies object from one array to another array with reverse of objects
3075 /// order. Source and destination arrays may be the same.

Callers 2

medCharMethod · 0.95
stableStringSortMethod · 0.95

Calls 2

lengthMethod · 0.65
charAtMethod · 0.65

Tested by

no test coverage detected