Document Array and String get() function behavior (KT-30141)
This commit is contained in:
@@ -21,19 +21,25 @@ public class Array<T> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the array element at the specified [index]. This method can be called using the
|
* Returns the array element at the specified [index]. This method can be called using the
|
||||||
* index operator:
|
* index operator.
|
||||||
* ```
|
* ```
|
||||||
* value = arr[index]
|
* value = arr[index]
|
||||||
* ```
|
* ```
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
*/
|
*/
|
||||||
public operator fun get(index: Int): T
|
public operator fun get(index: Int): T
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the array element at the specified [index] to the specified [value]. This method can
|
* Sets the array element at the specified [index] to the specified [value]. This method can
|
||||||
* be called using the index operator:
|
* be called using the index operator.
|
||||||
* ```
|
* ```
|
||||||
* arr[index] = value
|
* arr[index] = value
|
||||||
* ```
|
* ```
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
*/
|
*/
|
||||||
public operator fun set(index: Int, value: T): Unit
|
public operator fun set(index: Int, value: T): Unit
|
||||||
|
|
||||||
|
|||||||
@@ -18,9 +18,20 @@ public class ByteArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Byte)
|
public inline constructor(size: Int, init: (Int) -> Byte)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Byte
|
public operator fun get(index: Int): Byte
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Byte): Unit
|
public operator fun set(index: Int, value: Byte): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
@@ -41,9 +52,20 @@ public class CharArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Char)
|
public inline constructor(size: Int, init: (Int) -> Char)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Char
|
public operator fun get(index: Int): Char
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Char): Unit
|
public operator fun set(index: Int, value: Char): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
@@ -64,9 +86,20 @@ public class ShortArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Short)
|
public inline constructor(size: Int, init: (Int) -> Short)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Short
|
public operator fun get(index: Int): Short
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Short): Unit
|
public operator fun set(index: Int, value: Short): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
@@ -87,9 +120,20 @@ public class IntArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Int)
|
public inline constructor(size: Int, init: (Int) -> Int)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Int
|
public operator fun get(index: Int): Int
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Int): Unit
|
public operator fun set(index: Int, value: Int): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
@@ -110,9 +154,20 @@ public class LongArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Long)
|
public inline constructor(size: Int, init: (Int) -> Long)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Long
|
public operator fun get(index: Int): Long
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Long): Unit
|
public operator fun set(index: Int, value: Long): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
@@ -133,9 +188,20 @@ public class FloatArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Float)
|
public inline constructor(size: Int, init: (Int) -> Float)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Float
|
public operator fun get(index: Int): Float
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Float): Unit
|
public operator fun set(index: Int, value: Float): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
@@ -156,9 +222,20 @@ public class DoubleArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Double)
|
public inline constructor(size: Int, init: (Int) -> Double)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Double
|
public operator fun get(index: Int): Double
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Double): Unit
|
public operator fun set(index: Int, value: Double): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
@@ -179,9 +256,20 @@ public class BooleanArray(size: Int) {
|
|||||||
*/
|
*/
|
||||||
public inline constructor(size: Int, init: (Int) -> Boolean)
|
public inline constructor(size: Int, init: (Int) -> Boolean)
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): Boolean
|
public operator fun get(index: Int): Boolean
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
|
||||||
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: Boolean): Unit
|
public operator fun set(index: Int, value: Boolean): Unit
|
||||||
|
|
||||||
/** Returns the number of elements in the array. */
|
/** Returns the number of elements in the array. */
|
||||||
|
|||||||
@@ -27,6 +27,11 @@ public interface CharSequence {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the character at the specified [index] in this character sequence.
|
* Returns the character at the specified [index] in this character sequence.
|
||||||
|
*
|
||||||
|
* @throws [IndexOutOfBoundsException] if the [index] is out of bounds of this character sequence.
|
||||||
|
*
|
||||||
|
* Note that the [String] implementation of this interface in Kotlin/JS has unspecified behavior
|
||||||
|
* if the [index] is out of its bounds.
|
||||||
*/
|
*/
|
||||||
public operator fun get(index: Int): Char
|
public operator fun get(index: Int): Char
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,12 @@ public class String : Comparable<String>, CharSequence {
|
|||||||
|
|
||||||
public override val length: Int
|
public override val length: Int
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the character of this string at the specified [index].
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this string, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public override fun get(index: Int): Char
|
public override fun get(index: Int): Char
|
||||||
|
|
||||||
public override fun subSequence(startIndex: Int, endIndex: Int): CharSequence
|
public override fun subSequence(startIndex: Int, endIndex: Int): CharSequence
|
||||||
|
|||||||
@@ -43,9 +43,20 @@ class GenerateArrays(out: PrintWriter) : BuiltInsSourceGenerator(out) {
|
|||||||
out.println(" */")
|
out.println(" */")
|
||||||
out.println(" public inline constructor(size: Int, init: (Int) -> $s)")
|
out.println(" public inline constructor(size: Int, init: (Int) -> $s)")
|
||||||
out.println()
|
out.println()
|
||||||
out.println(" /** Returns the array element at the given [index]. This method can be called using the index operator. */")
|
out.println(" /**")
|
||||||
|
out.println(" * Returns the array element at the given [index]. This method can be called using the index operator.")
|
||||||
|
out.println(" *")
|
||||||
|
out.println(" * If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS")
|
||||||
|
out.println(" * where the behavior is unspecified.")
|
||||||
|
out.println(" */")
|
||||||
out.println(" public operator fun get(index: Int): $s")
|
out.println(" public operator fun get(index: Int): $s")
|
||||||
out.println(" /** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */")
|
out.println()
|
||||||
|
out.println(" /**")
|
||||||
|
out.println(" * Sets the element at the given [index] to the given [value]. This method can be called using the index operator.")
|
||||||
|
out.println(" *")
|
||||||
|
out.println(" * If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS")
|
||||||
|
out.println(" * where the behavior is unspecified.")
|
||||||
|
out.println(" */")
|
||||||
out.println(" public operator fun set(index: Int, value: $s): Unit")
|
out.println(" public operator fun set(index: Int, value: $s): Unit")
|
||||||
out.println()
|
out.println()
|
||||||
out.println(" /** Returns the number of elements in the array. */")
|
out.println(" /** Returns the number of elements in the array. */")
|
||||||
|
|||||||
@@ -428,10 +428,20 @@ class UnsignedArrayGenerator(val type: UnsignedType, out: PrintWriter) : BuiltIn
|
|||||||
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
||||||
public constructor(size: Int) : this($storageArrayType(size))
|
public constructor(size: Int) : this($storageArrayType(size))
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): $elementType = storage[index].to$elementType()
|
public operator fun get(index: Int): $elementType = storage[index].to$elementType()
|
||||||
|
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: $elementType) {
|
public operator fun set(index: Int, value: $elementType) {
|
||||||
storage[index] = value.to$storageElementType()
|
storage[index] = value.to$storageElementType()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,10 +17,20 @@ internal constructor(@PublishedApi internal val storage: ByteArray) : Collection
|
|||||||
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
||||||
public constructor(size: Int) : this(ByteArray(size))
|
public constructor(size: Int) : this(ByteArray(size))
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): UByte = storage[index].toUByte()
|
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. */
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: UByte) {
|
public operator fun set(index: Int, value: UByte) {
|
||||||
storage[index] = value.toByte()
|
storage[index] = value.toByte()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,10 +17,20 @@ internal constructor(@PublishedApi internal val storage: IntArray) : Collection<
|
|||||||
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
||||||
public constructor(size: Int) : this(IntArray(size))
|
public constructor(size: Int) : this(IntArray(size))
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): UInt = storage[index].toUInt()
|
public operator fun get(index: Int): UInt = storage[index].toUInt()
|
||||||
|
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: UInt) {
|
public operator fun set(index: Int, value: UInt) {
|
||||||
storage[index] = value.toInt()
|
storage[index] = value.toInt()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,10 +17,20 @@ internal constructor(@PublishedApi internal val storage: LongArray) : Collection
|
|||||||
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
||||||
public constructor(size: Int) : this(LongArray(size))
|
public constructor(size: Int) : this(LongArray(size))
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): ULong = storage[index].toULong()
|
public operator fun get(index: Int): ULong = storage[index].toULong()
|
||||||
|
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: ULong) {
|
public operator fun set(index: Int, value: ULong) {
|
||||||
storage[index] = value.toLong()
|
storage[index] = value.toLong()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,10 +17,20 @@ internal constructor(@PublishedApi internal val storage: ShortArray) : Collectio
|
|||||||
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
/** Creates a new array of the specified [size], with all elements initialized to zero. */
|
||||||
public constructor(size: Int) : this(ShortArray(size))
|
public constructor(size: Int) : this(ShortArray(size))
|
||||||
|
|
||||||
/** Returns the array element at the given [index]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Returns the array element at the given [index]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun get(index: Int): UShort = storage[index].toUShort()
|
public operator fun get(index: Int): UShort = storage[index].toUShort()
|
||||||
|
|
||||||
/** Sets the element at the given [index] to the given [value]. This method can be called using the index operator. */
|
/**
|
||||||
|
* Sets the element at the given [index] to the given [value]. This method can be called using the index operator.
|
||||||
|
*
|
||||||
|
* If the [index] is out of bounds of this array, throws an [IndexOutOfBoundsException] except in Kotlin/JS
|
||||||
|
* where the behavior is unspecified.
|
||||||
|
*/
|
||||||
public operator fun set(index: Int, value: UShort) {
|
public operator fun set(index: Int, value: UShort) {
|
||||||
storage[index] = value.toShort()
|
storage[index] = value.toShort()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user