kotlin-stdlib / kotlin.text / appendLine 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 fun StringBuilder.appendLine(): StringBuilder(source) Appends a line feed character (\n) to this StringBuilder. Common JVM JS Native 1.4 fun StringBuilder.appendLine( value: CharSequence?): StringBuilder(source) Common JVM JS Native 1.4 fun StringBuilder.appendLine(value: String?): StringBuilder(source) Common JVM JS Native 1.4 fun StringBuilder.appendLine(value: Any?): StringBuilder(source) Common JVM JS Native 1.4 fun StringBuilder.appendLine(value: CharArray): StringBuilder(source) Common JVM JS Native 1.4 fun StringBuilder.appendLine(value: Char): StringBuilder(source) Common JVM JS Native 1.4 fun StringBuilder.appendLine(value: Boolean): StringBuilder(source) Native 1.4 fun StringBuilder.appendLine(value: Byte): StringBuilder(source) Native 1.4 fun StringBuilder.appendLine(value: Short): StringBuilder(source) Native 1.4 fun StringBuilder.appendLine(value: Int): StringBuilder(source) Native 1.4 fun StringBuilder.appendLine(value: Long): StringBuilder(source) Native 1.4 fun StringBuilder.appendLine(value: Float): StringBuilder(source) Native 1.4 fun StringBuilder.appendLine(value: Double): StringBuilder(source) Appends value to this StringBuilder, followed by a line feed character (\n).