MCPcopy
hub / github.com/libgdx/libgdx / appendTrue

Method appendTrue

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

Appends "true".

(int index)

Source from the content-addressed store, hash-verified

1156
1157 /** Appends {@code "true"}. */
1158 private void appendTrue (int index) {
1159 items[index++] = 't';
1160 items[index++] = 'r';
1161 items[index++] = 'u';
1162 items[index] = 'e';
1163 size += TRUE_STRING_SIZE;
1164 }
1165
1166 /** Appends an iterable placing separators between each value, but not before the first or after the last. Each object is
1167 * appended using {@link #append(Object)}.

Callers 2

appendMethod · 0.95
insertMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected