Appendable
Functions
append
Appends the specified character value to this Appendable and returns this instance.
abstract
fun
append
(
value
:
Char
)
:
Appendable
Appends the specified character sequence value to this Appendable and returns this instance.
abstract
fun
append
(
value
:
CharSequence
?
)
:
Appendable
Appends a subsequence of the specified character sequence value to this Appendable and returns this instance.
abstract
fun
append
(
value
:
CharSequence
?
,
startIndex
:
Int
,
endIndex
:
Int
)
:
Appendable
Extension Functions
append
Appends all arguments to the given Appendable .
fun
<
T
:
Appendable
>
T
.
append
(
vararg
value
:
CharSequence
?
)
:
T
appendLine
Appends a line feed character (
\n
) to this Appendable.
fun
Appendable
.
appendLine
(
)
:
Appendable
Appends value to the given Appendable and a line feed character (
\n
) after it.
fun
Appendable
.
appendLine
(
value
:
CharSequence
?
)
:
Appendable
fun
Appendable
.
appendLine
(
value
:
Char
)
:
Appendable
appendRange
Appends a subsequence of the specified character sequence value to this Appendable and returns this instance.
fun
<
T
:
Appendable
>
T
.
appendRange
(
value
:
CharSequence
,
startIndex
:
Int
,
endIndex
:
Int
)
:
T
Inheritors
StringBuilder
A mutable sequence of characters.
class
StringBuilder
:
Appendable
,
CharSequence
typealias
StringBuilder
=
StringBuilder
class
StringBuilder
:
CharSequence
,
Appendable