MCPcopy
hub / github.com/libgdx/libgdx / appendLine

Method appendLine

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

Appends a string followed by a new line to this CharArray. Appending null will call #appendNull().

(@Null String str)

Source from the content-addressed store, hash-verified

944
945 /** Appends a string followed by a new line to this CharArray. Appending null will call {@link #appendNull()}. */
946 public CharArray appendLine (@Null String str) {
947 append(str);
948 return append('\n');
949 }
950
951 /** Appends part of a string followed by a new line to this CharArray. Appending null will call {@link #appendNull()}.
952 * @param start the start index, inclusive

Callers 1

appendlnMethod · 0.80

Calls 1

appendMethod · 0.95

Tested by

no test coverage detected