readFully
fun Buffer.readFully(dst: Array<Byte>, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
inline fun ChunkBuffer.readFully(destination: ByteArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Input.readFully(dst: ByteArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
fun Input.readFully(dst: ShortArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
fun Input.readFully(dst: IntArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
fun Input.readFully(dst: LongArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
fun Input.readFully(dst: FloatArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
fun Input.readFully(dst: DoubleArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
fun Input.readFully(destination: Memory, destinationOffset: Int, length: Int)
Content copied to clipboard
fun Input.readFully(destination: Memory, destinationOffset: Long, length: Long)
Content copied to clipboard
inline fun Input.readFully(dst: UByteArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
inline fun Input.readFully(dst: UShortArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
inline fun Input.readFully(dst: UIntArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
inline fun Input.readFully(dst: ULongArray, offset: Int = 0, length: Int = dst.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: ByteArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: UByteArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
Read from this buffer to the destination array to offset and length bytes.
fun Buffer.readFully(destination: ShortArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: UShortArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: IntArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: UIntArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: LongArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: ULongArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: FloatArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
fun Buffer.readFully(destination: DoubleArray, offset: Int = 0, length: Int = destination.size - offset)
Content copied to clipboard
Read from this buffer to the destination array to offset and length bytes. Numeric values are interpreted in the network byte order (Big Endian).
Read at most length bytes from this buffer to the dst buffer.
Return
number of bytes copied
fun Buffer.readFully(dst: ArrayBuffer, offset: Int = 0, length: Int = dst.byteLength - offset)
Content copied to clipboard
fun Buffer.readFully(dst: ArrayBufferView, offset: Int = 0, length: Int = dst.byteLength - offset)
Content copied to clipboard
fun Input.readFully(dst: Int8Array, offset: Int = 0, length: Int = dst.length - offset)
Content copied to clipboard
fun Input.readFully(dst: ArrayBuffer, offset: Int = 0, length: Int = dst.byteLength - offset)
Content copied to clipboard
fun Input.readFully(dst: ArrayBufferView, byteOffset: Int = 0, byteLength: Int = dst.byteLength - byteOffset)
Content copied to clipboard
Read buffer's content to the destination buffer moving its position.
Read exactly dst.remaining()
bytes to the specified dst byte buffer and change its position accordingly
Return
number of bytes copied
fun Buffer.readFully(pointer: <ERROR CLASS><<ERROR CLASS>>, offset: Int, length: Int)
Content copied to clipboard
fun Buffer.readFully(pointer: <ERROR CLASS><<ERROR CLASS>>, offset: Long, length: Int)
Content copied to clipboard
fun Input.readFully(dst: <ERROR CLASS><<ERROR CLASS>>, offset: Int, length: Int)
Content copied to clipboard
fun Input.readFully(dst: <ERROR CLASS><<ERROR CLASS>>, offset: Long, length: Long)
Content copied to clipboard
fun ByteReadPacket.readFully(dst: <ERROR CLASS><<ERROR CLASS>>, size: Int): Int
Content copied to clipboard
fun ByteReadPacket.readFully(dst: <ERROR CLASS><<ERROR CLASS>>, size: Long): Long
Content copied to clipboard
Read exactly size bytes to the specified dst address
Return
number of bytes copied