Output
abstract class Output(pool: ObjectPool<ChunkBuffer>) : Appendable, Closeable
Content copied to clipboard
This shouldn't be implemented directly. Inherit Output instead.
Constructors
Functions
Link copied to clipboard
Append single UTF-8 character
open override fun append(value: CharSequence?, startIndex: Int, endIndex: Int): Output
Content copied to clipboard
Inheritors
Extensions
Link copied to clipboard
fun Output.append(csq: CharSequence, start: Int = 0, end: Int = csq.length): Appendable
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun Output.writeFully(src: ByteArray, offset: Int = 0, length: Int = src.size - offset)
Content copied to clipboard
fun Output.writeFully(src: ShortArray, offset: Int = 0, length: Int = src.size - offset)
Content copied to clipboard
fun Output.writeFully(src: IntArray, offset: Int = 0, length: Int = src.size - offset)
Content copied to clipboard
fun Output.writeFully(src: LongArray, offset: Int = 0, length: Int = src.size - offset)
Content copied to clipboard
fun Output.writeFully(src: FloatArray, offset: Int = 0, length: Int = src.size - offset)
Content copied to clipboard
fun Output.writeFully(src: DoubleArray, offset: Int = 0, length: Int = src.size - offset)
Content copied to clipboard
inline fun Output.writeFully(array: UByteArray, offset: Int = 0, length: Int = array.size - offset)
Content copied to clipboard
inline fun Output.writeFully(array: UShortArray, offset: Int = 0, length: Int = array.size - offset)
Content copied to clipboard
inline fun Output.writeFully(array: UIntArray, offset: Int = 0, length: Int = array.size - offset)
Content copied to clipboard
inline fun Output.writeFully(array: ULongArray, offset: Int = 0, length: Int = array.size - offset)
Content copied to clipboard
fun Output.writeFully(src: <ERROR CLASS><<ERROR CLASS>>, offset: Int, length: Int)
Content copied to clipboard
fun Output.writeFully(src: <ERROR CLASS><<ERROR CLASS>>, offset: Long, length: Long)
Content copied to clipboard
Link copied to clipboard
fun Output.writeFullyLittleEndian(source: UShortArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
fun Output.writeFullyLittleEndian(source: ShortArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
fun Output.writeFullyLittleEndian(source: UIntArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
fun Output.writeFullyLittleEndian(source: IntArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
fun Output.writeFullyLittleEndian(source: ULongArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
fun Output.writeFullyLittleEndian(source: LongArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
fun Output.writeFullyLittleEndian(source: FloatArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
fun Output.writeFullyLittleEndian(source: DoubleArray, offset: Int = 0, length: Int = source.size - offset)
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard