ImmutableBlob

An immutable compile-time array of bytes.

Functions

Link copied to clipboard
operator external fun get(index: Int): Byte
Link copied to clipboard
operator fun iterator(): ByteIterator

Creates an iterator over the elements of the array.

Properties

Link copied to clipboard
val size: Int

Extensions

Link copied to clipboard

Returns stable C pointer to data at certain offset, useful as a way to pass resource to C APIs.

Link copied to clipboard
Link copied to clipboard
external fun ImmutableBlob.toByteArray(startIndex: Int = 0, endIndex: Int = size): ByteArray

Copies the data from this blob into a new ByteArray.

Link copied to clipboard
@ExperimentalUnsignedTypes
external fun ImmutableBlob.toUByteArray(startIndex: Int = 0, endIndex: Int = size): UByteArray

Copies the data from this blob into a new UByteArray.