appendLine

Common
JVM
JS
Native
1.4
fun Appendable.appendLine(): Appendable
(source)

Appends a line feed character (\n) to this Appendable.

Common
JVM
JS
Native
1.4
fun Appendable.appendLine(value: CharSequence?): Appendable
(source)
fun Appendable.appendLine(value: Char): Appendable
(source)

Appends value to the given Appendable and a line feed character (\n) after it.

Common
JVM
JS
Native
1.4

Appends a line feed character (\n) to this StringBuilder.

Common
JVM
JS
Native
1.4
fun StringBuilder.appendLine(
    value: CharSequence?
): StringBuilder

(source)
fun StringBuilder.appendLine(value: String?): StringBuilder
(source)
fun StringBuilder.appendLine(value: Any?): StringBuilder
(source)
fun StringBuilder.appendLine(value: Char): StringBuilder
(source)
fun StringBuilder.appendLine(value: Boolean): StringBuilder
(source)

Appends value to this StringBuilder, followed by a line feed character (\n).

Common
JS
Native
1.4

Appends value to this StringBuilder, followed by a line feed character (\n).