Package-level declarations

Types

Link copied to clipboard
value class KoneArray<out Element>(array: Array<out Element>) : KoneList<Element>

An immutable wrapper for standard Array with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneByteArray(array: ByteArray) : KoneList<Byte>

An immutable wrapper for standard ByteArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneDoubleArray(array: DoubleArray) : KoneList<Double>

An immutable wrapper for standard DoubleArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneFloatArray(array: FloatArray) : KoneList<Float>

An immutable wrapper for standard FloatArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneIntArray(array: IntArray) : KoneList<Int>

An immutable wrapper for standard IntArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneLongArray(array: LongArray) : KoneList<Long>

An immutable wrapper for standard LongArray with unsigned indexation that also implements KoneList.

Link copied to clipboard

A wrapper for standard Array with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableByteArray(array: ByteArray) : KoneSettableList<Byte>

A wrapper for standard ByteArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard

A wrapper for standard DoubleArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableFloatArray(array: FloatArray) : KoneSettableList<Float>

A wrapper for standard FloatArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableIntArray(array: IntArray) : KoneSettableList<Int>

A wrapper for standard IntArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableLongArray(array: LongArray) : KoneSettableList<Long>

A wrapper for standard LongArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableShortArray(array: ShortArray) : KoneSettableList<Short>

A wrapper for standard ShortArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableUByteArray(array: UByteArray) : KoneSettableList<UByte>

A wrapper for standard UByteArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableUIntArray(array: UIntArray) : KoneSettableList<UInt>

A wrapper for standard UIntArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneMutableULongArray(array: ULongArray) : KoneSettableList<ULong>

A wrapper for standard ULongArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard

A wrapper for standard UShortArray with unsigned indexation that also implements KoneSettableList.

Link copied to clipboard
@Serializable
value class KoneShortArray(array: ShortArray) : KoneList<Short>

An immutable wrapper for standard ShortArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneUByteArray(array: UByteArray) : KoneList<UByte>

An immutable wrapper for standard UByteArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneUIntArray(array: UIntArray) : KoneList<UInt>

An immutable wrapper for standard UIntArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneULongArray(array: ULongArray) : KoneList<ULong>

An immutable wrapper for standard ULongArray with unsigned indexation that also implements KoneList.

Link copied to clipboard
@Serializable
value class KoneUShortArray(array: UShortArray) : KoneList<UShort>

An immutable wrapper for standard UShortArray with unsigned indexation that also implements KoneList.

Functions

Link copied to clipboard
inline fun <Element> KoneArray(size: UInt, initializer: (UInt) -> Element): KoneArray<Element>

Returns a KoneArray of provided size of elements produced by the initializer.

Link copied to clipboard
inline fun <Element> koneArrayOf(vararg elements: Element): KoneArray<Element>
Link copied to clipboard

Returns a KoneByteArray of provided size of zeros.

inline fun KoneByteArray(size: UInt, initializer: (UInt) -> Byte): KoneByteArray

Returns a KoneByteArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneByteArrayOf(vararg elements: Byte): KoneByteArray
Link copied to clipboard

Returns a KoneDoubleArray of provided size of zeros.

inline fun KoneDoubleArray(size: UInt, initializer: (UInt) -> Double): KoneDoubleArray

Returns a KoneDoubleArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneFloatArray of provided size of zeros.

inline fun KoneFloatArray(size: UInt, initializer: (UInt) -> Float): KoneFloatArray

Returns a KoneFloatArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneFloatArrayOf(vararg elements: Float): KoneFloatArray
Link copied to clipboard

Returns a KoneIntArray of provided size of zeros.

inline fun KoneIntArray(size: UInt, initializer: (UInt) -> Int): KoneIntArray

Returns a KoneIntArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneIntArrayOf(vararg elements: Int): KoneIntArray
Link copied to clipboard

Returns a KoneLongArray of provided size of zeros.

inline fun KoneLongArray(size: UInt, initializer: (UInt) -> Long): KoneLongArray

Returns a KoneLongArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneLongArrayOf(vararg elements: Long): KoneLongArray
Link copied to clipboard
inline fun <Element> KoneMutableArray(size: UInt, initializer: (UInt) -> Element): KoneMutableArray<Element>

Returns a KoneMutableArray of provided size of elements produced by the initializer.

Link copied to clipboard
inline fun <Element> koneMutableArrayOf(vararg elements: Element): KoneMutableArray<Element>
Link copied to clipboard

Returns a KoneMutableByteArray of provided size of zeros.

inline fun KoneMutableByteArray(size: UInt, initializer: (UInt) -> Byte): KoneMutableByteArray

Returns a KoneMutableByteArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableDoubleArray of provided size of zeros.

inline fun KoneMutableDoubleArray(size: UInt, initializer: (UInt) -> Double): KoneMutableDoubleArray

Returns a KoneMutableDoubleArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableFloatArray of provided size of zeros.

inline fun KoneMutableFloatArray(size: UInt, initializer: (UInt) -> Float): KoneMutableFloatArray

Returns a KoneMutableFloatArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableIntArray of provided size of zeros.

inline fun KoneMutableIntArray(size: UInt, initializer: (UInt) -> Int): KoneMutableIntArray

Returns a KoneMutableIntArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableLongArray of provided size of zeros.

inline fun KoneMutableLongArray(size: UInt, initializer: (UInt) -> Long): KoneMutableLongArray

Returns a KoneMutableLongArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableShortArray of provided size of zeros.

inline fun KoneMutableShortArray(size: UInt, initializer: (UInt) -> Short): KoneMutableShortArray

Returns a KoneMutableShortArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableUByteArray of provided size of zeros.

inline fun KoneMutableUByteArray(size: UInt, initializer: (UInt) -> UByte): KoneMutableUByteArray

Returns a KoneMutableUByteArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableUIntArray of provided size of zeros.

inline fun KoneMutableUIntArray(size: UInt, initializer: (UInt) -> UInt): KoneMutableUIntArray

Returns a KoneMutableUIntArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableULongArray of provided size of zeros.

inline fun KoneMutableULongArray(size: UInt, initializer: (UInt) -> ULong): KoneMutableULongArray

Returns a KoneMutableULongArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneMutableUShortArray of provided size of zeros.

inline fun KoneMutableUShortArray(size: UInt, initializer: (UInt) -> UShort): KoneMutableUShortArray

Returns a KoneMutableUShortArray of provided size of elements produced by the initializer.

Link copied to clipboard
Link copied to clipboard

Returns a KoneShortArray of provided size of zeros.

inline fun KoneShortArray(size: UInt, initializer: (UInt) -> Short): KoneShortArray

Returns a KoneShortArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneShortArrayOf(vararg elements: Short): KoneShortArray
Link copied to clipboard

Returns a KoneUByteArray of provided size of zeros.

inline fun KoneUByteArray(size: UInt, initializer: (UInt) -> UByte): KoneUByteArray

Returns a KoneUByteArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneUByteArrayOf(vararg elements: UByte): KoneUByteArray
Link copied to clipboard

Returns a KoneUIntArray of provided size of zeros.

inline fun KoneUIntArray(size: UInt, initializer: (UInt) -> UInt): KoneUIntArray

Returns a KoneUIntArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneUIntArrayOf(vararg elements: UInt): KoneUIntArray
Link copied to clipboard

Returns a KoneULongArray of provided size of zeros.

inline fun KoneULongArray(size: UInt, initializer: (UInt) -> ULong): KoneULongArray

Returns a KoneULongArray of provided size of elements produced by the initializer.

Link copied to clipboard
fun koneULongArrayOf(vararg elements: ULong): KoneULongArray
Link copied to clipboard

Returns a KoneUShortArray of provided size of zeros.

inline fun KoneUShortArray(size: UInt, initializer: (UInt) -> UShort): KoneUShortArray

Returns a KoneUShortArray of provided size of elements produced by the initializer.

Link copied to clipboard