MCPcopy
hub / github.com/libgdx/libgdx / appendFalse

Method appendFalse

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

Appends "false".

(int index)

Source from the content-addressed store, hash-verified

825
826 /** Appends {@code "false"}. */
827 private void appendFalse (int index) {
828 items[index++] = 'f';
829 items[index++] = 'a';
830 items[index++] = 'l';
831 items[index++] = 's';
832 items[index] = 'e';
833 size += FALSE_STRING_SIZE;
834 }
835
836 /** Appends an object to this CharArray padding on the left to a fixed width. The {@code String.valueOf} of the {@code int}
837 * value is used. If the formatted value is larger than the length, the left hand side is lost.

Callers 2

appendMethod · 0.95
insertMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected