W3cubDocs

/Kotlin

Appendable

interface Appendable

Platform and version requirements: JS

Functions

append

abstract fun append(csq: CharSequence?): Appendable
abstract fun append(
    csq: CharSequence?, 
    start: Int, 
    end: Int
): Appendable
abstract fun append(c: Char): Appendable

Inherited Functions

equals

open operator fun equals(other: Any?): Boolean

Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements:

hashCode

open fun hashCode(): Int

Returns a hash code value for the object. The general contract of hashCode is:

toString

open fun toString(): String

Returns a string representation of the object.

Inheritors

StringBuilder

class StringBuilder : Appendable, CharSequence

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-appendable/