appendln

JVM
1.0
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.

Appends a line separator to this StringBuilder.

JVM
1.0
fun StringBuilder.appendln(
    value: StringBuffer?
): StringBuilder

(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(
    value: CharSequence?
): StringBuilder

(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: String?): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Any?): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(
    value: StringBuilder?
): StringBuilder

(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Char): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Boolean): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Int): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Short): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Byte): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Long): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Float): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.
fun StringBuilder.appendln(value: Double): StringBuilder
(source)
Deprecated: Use appendLine instead. Note that the new method always appends the line feed character '\\n' regardless of the system line separator.

Appends value to this StringBuilder, followed by a line separator.