MCPcopy
hub / github.com/libgdx/libgdx / charAt

Method charAt

gdx/src/com/badlogic/gdx/utils/CharArray.java:1247–1249  ·  view source on GitHub ↗

Gets the character at the specified index. @see #setCharAt(int, char) @see #deleteCharAt(int) @return The character at the index @throws IndexOutOfBoundsException if the index is invalid

(int index)

Source from the content-addressed store, hash-verified

1245 * @return The character at the index
1246 * @throws IndexOutOfBoundsException if the index is invalid */
1247 public char charAt (int index) {
1248 return items[index];
1249 }
1250
1251 /** Retrieves the Unicode code point value at the {@code index}.
1252 * @param index the index to the {@code char} code unit.

Callers 15

charSequenceTestMethod · 0.95
writeImagesMethod · 0.45
asCharMethod · 0.45
asCharArrayMethod · 0.45
decodeLinesMethod · 0.45
writeStringMethod · 0.45
writeString_slowMethod · 0.45
unescapeMethod · 0.45
replaceEscapeCharsMethod · 0.45
simpleFormatMethod · 0.45
readValueMethod · 0.45
endsWithMethod · 0.45

Calls

no outgoing calls

Tested by 1

charSequenceTestMethod · 0.76