writeBytes

open fun writeBytes(b: ByteArray, length: Int)

Writes an array of bytes.

Parameters

b

the bytes to write

length

the number of bytes to write

See also


abstract fun writeBytes(b: ByteArray, offset: Int, length: Int)

Writes an array of bytes.

Parameters

b

the bytes to write

offset

the offset in the byte array

length

the number of bytes to write

See also