MCPcopy Create free account
hub / github.com/davidgiven/luje / charAt

Method charAt

lib/java/util/Arrays.java:2661–2666  ·  view source on GitHub ↗
(String str, int i)

Source from the content-addressed store, hash-verified

2659 * index more than the length of this string.
2660 */
2661 private static int charAt(String str, int i) {
2662 if (i >= str.length()) {
2663 return -1;
2664 }
2665 return str.charAt(i);
2666 }
2667
2668 /**
2669 * 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