58 lines
2.2 KiB
Kotlin
58 lines
2.2 KiB
Kotlin
/*
|
|
* Copyright 2010-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
// Auto-generated file. DO NOT EDIT!
|
|
|
|
package kotlin
|
|
|
|
@SinceKotlin("1.3")
|
|
@ExperimentalUnsignedTypes
|
|
public inline class UByteArray
|
|
@Suppress("NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS")
|
|
@PublishedApi
|
|
internal constructor(@PublishedApi internal val storage: ByteArray) : Collection<UByte> {
|
|
|
|
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
|
public constructor(size: Int) : this(ByteArray(size))
|
|
|
|
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
|
public operator fun get(index: Int): UByte = storage[index].toUByte()
|
|
|
|
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
public operator fun set(index: Int, value: UByte) {
|
|
storage[index] = value.toByte()
|
|
}
|
|
|
|
/** Returns the number of elements in the array. */
|
|
public override val size: Int get() = storage.size
|
|
|
|
/** Creates an iterator over the elements of the array. */
|
|
public override operator fun iterator(): UByteIterator = Iterator(storage)
|
|
|
|
private class Iterator(private val array: ByteArray) : UByteIterator() {
|
|
private var index = 0
|
|
override fun hasNext() = index < array.size
|
|
override fun nextUByte() = if (index < array.size) array[index++].toUByte() else throw NoSuchElementException(index.toString())
|
|
}
|
|
|
|
override fun contains(element: UByte): Boolean = storage.contains(element.toByte())
|
|
|
|
override fun containsAll(elements: Collection<UByte>): Boolean = elements.all { storage.contains(it.toByte()) }
|
|
|
|
override fun isEmpty(): Boolean = this.storage.size == 0
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@ExperimentalUnsignedTypes
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun UByteArray(size: Int, init: (Int) -> UByte): UByteArray {
|
|
return UByteArray(ByteArray(size) { index -> init(index).toByte() })
|
|
}
|
|
|
|
@SinceKotlin("1.3")
|
|
@ExperimentalUnsignedTypes
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun ubyteArrayOf(vararg elements: UByte): UByteArray = elements
|