Appendable
An object to which char sequences and values can be appended.
Functions
append
Link copied to clipboard
Appends the specified character value to this Appendable and returns this instance.
Appends the specified character sequence value to this Appendable and returns this instance.
abstract fun append(value: CharSequence?, startIndex: Int, endIndex: Int): Appendable
Content copied to clipboard
abstract fun append(value: CharSequence?, startIndex: Int, endIndex: Int): Appendable
Content copied to clipboard
abstract fun append(value: CharSequence?, startIndex: Int, endIndex: Int): Appendable
Content copied to clipboard
Appends a subsequence of the specified character sequence value to this Appendable and returns this instance.
Inheritors
StringBuilder
Link copied to clipboard
Extensions
append Line
Link copied to clipboard
Appends a line feed character (\n
) to this Appendable.
Appends value to the given Appendable and a line feed character (\n
) after it.
appendln
Link copied to clipboard
Appends a line separator to this Appendable.
Appends value to the given Appendable and line separator after it.