ByteArray

class ByteArray(size: Int)

An array of bytes. When targeting the JVM, instances of this class are represented as byte[].

class ByteArray(size: Int)

An array of bytes. When targeting the JVM, instances of this class are represented as byte[].

class ByteArray

An array of bytes.

Constructors

Link copied to clipboard
fun ByteArray(size: Int, init: (Int) -> Byte)

Creates a new array of the specified size, where each element is calculated by calling the specified init function.

fun ByteArray(size: Int, init: (Int) -> Byte)

Creates a new array of the specified size, where each element is calculated by calling the specified init function.

fun ByteArray(size: Int, init: (Int) -> Byte)

Creates a new array of the specified size, where each element is calculated by calling the specified init function.

Link copied to clipboard
fun ByteArray(size: Int)

Creates a new array of the specified size, with all elements initialized to zero.

fun ByteArray(size: Int)

Creates a new array of the specified size, with all elements initialized to zero.

fun ByteArray(size: Int)

Functions

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

Returns the array element at the given index. This method can be called using the index operator.

operator fun get(index: Int): Byte

Returns the array element at the given index. This method can be called using the index operator.

operator external fun get(index: Int): Byte

Returns the array element at the given index. This method can be called using the index operator.

Link copied to clipboard
operator fun iterator(): ByteIterator

Creates an iterator over the elements of the array.

operator fun iterator(): ByteIterator

Creates an iterator over the elements of the array.

operator fun iterator(): ByteIterator

Creates an iterator over the elements of the array.

Link copied to clipboard
operator fun set(index: Int, value: Byte)

Sets the element at the given index to the given value. This method can be called using the index operator.

operator fun set(index: Int, value: Byte)

Sets the element at the given index to the given value. This method can be called using the index operator.

operator external fun set(index: Int, value: Byte)

Sets the element at the given index to the given value. This method can be called using the index operator.

Properties

Link copied to clipboard
val size: Int

Returns the number of elements in the array.

val size: Int

Returns the number of elements in the array.

val size: Int

Extensions

Link copied to clipboard
inline fun ByteArray.all(predicate: (Byte) -> Boolean): Boolean
inline fun ByteArray.all(predicate: (Byte) -> Boolean): Boolean
inline fun ByteArray.all(predicate: (Byte) -> Boolean): Boolean

Returns true if all elements match the given predicate.

Link copied to clipboard

Returns true if array has at least one element.

inline fun ByteArray.any(predicate: (Byte) -> Boolean): Boolean
inline fun ByteArray.any(predicate: (Byte) -> Boolean): Boolean
inline fun ByteArray.any(predicate: (Byte) -> Boolean): Boolean

Returns true if at least one element matches the given predicate.

Link copied to clipboard

Creates an Iterable instance that wraps the original array returning its elements when being iterated.

Link copied to clipboard
expect fun ByteArray.asList(): List<Byte>
expect fun ByteArray.asList(): List<Byte>
expect fun ByteArray.asList(): List<Byte>

Returns a List that wraps the original array.

actual fun ByteArray.asList(): List<Byte>
actual fun ByteArray.asList(): List<Byte>
actual fun ByteArray.asList(): List<Byte>

Returns a List that wraps the original array.

actual inline fun ByteArray.asList(): List<Byte>
actual inline fun ByteArray.asList(): List<Byte>
actual inline fun ByteArray.asList(): List<Byte>

Returns a List that wraps the original array.

actual fun ByteArray.asList(): List<Byte>
actual fun ByteArray.asList(): List<Byte>
actual fun ByteArray.asList(): List<Byte>

Returns a List that wraps the original array.

Link copied to clipboard

Creates a Sequence instance that wraps the original array returning its elements when being iterated.

Link copied to clipboard
inline fun <K, V> ByteArray.associate(transform: (Byte) -> Pair<K, V>): Map<K, V>
inline fun <K, V> ByteArray.associate(transform: (Byte) -> Pair<K, V>): Map<K, V>
inline fun <K, V> ByteArray.associate(transform: (Byte) -> Pair<K, V>): Map<K, V>

Returns a Map containing key-value pairs provided by transform function applied to elements of the given array.

Link copied to clipboard
inline fun <K> ByteArray.associateBy(keySelector: (Byte) -> K): Map<K, Byte>
inline fun <K> ByteArray.associateBy(keySelector: (Byte) -> K): Map<K, Byte>
inline fun <K> ByteArray.associateBy(keySelector: (Byte) -> K): Map<K, Byte>

Returns a Map containing the elements from the given array indexed by the key returned from keySelector function applied to each element.

inline fun <K, V> ByteArray.associateBy(keySelector: (Byte) -> K, valueTransform: (Byte) -> V): Map<K, V>
inline fun <K, V> ByteArray.associateBy(keySelector: (Byte) -> K, valueTransform: (Byte) -> V): Map<K, V>
inline fun <K, V> ByteArray.associateBy(keySelector: (Byte) -> K, valueTransform: (Byte) -> V): Map<K, V>

Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given array.

Link copied to clipboard
inline fun <K, M : MutableMap<in K, in Byte>> ByteArray.associateByTo(destination: M, keySelector: (Byte) -> K): M
inline fun <K, M : MutableMap<in K, in Byte>> ByteArray.associateByTo(destination: M, keySelector: (Byte) -> K): M
inline fun <K, M : MutableMap<in K, in Byte>> ByteArray.associateByTo(destination: M, keySelector: (Byte) -> K): M

Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function applied to each element of the given array and value is the element itself.

inline fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateByTo(    destination: M,     keySelector: (Byte) -> K,     valueTransform: (Byte) -> V): M
inline fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateByTo(    destination: M,     keySelector: (Byte) -> K,     valueTransform: (Byte) -> V): M
inline fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateByTo(    destination: M,     keySelector: (Byte) -> K,     valueTransform: (Byte) -> V): M

Populates and returns the destination mutable map with key-value pairs, where key is provided by the keySelector function and and value is provided by the valueTransform function applied to elements of the given array.

Link copied to clipboard
inline fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateTo(destination: M, transform: (Byte) -> Pair<K, V>): M
inline fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateTo(destination: M, transform: (Byte) -> Pair<K, V>): M
inline fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateTo(destination: M, transform: (Byte) -> Pair<K, V>): M

Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given array.

Link copied to clipboard
inline fun <V> ByteArray.associateWith(valueSelector: (Byte) -> V): Map<Byte, V>
inline fun <V> ByteArray.associateWith(valueSelector: (Byte) -> V): Map<Byte, V>
inline fun <V> ByteArray.associateWith(valueSelector: (Byte) -> V): Map<Byte, V>

Returns a Map where keys are elements from the given array and values are produced by the valueSelector function applied to each element.

Link copied to clipboard
inline fun <V, M : MutableMap<in Byte, in V>> ByteArray.associateWithTo(destination: M, valueSelector: (Byte) -> V): M
inline fun <V, M : MutableMap<in Byte, in V>> ByteArray.associateWithTo(destination: M, valueSelector: (Byte) -> V): M
inline fun <V, M : MutableMap<in Byte, in V>> ByteArray.associateWithTo(destination: M, valueSelector: (Byte) -> V): M

Populates and returns the destination mutable map with key-value pairs for each element of the given array, where key is the element itself and value is provided by the valueSelector function applied to that key.

Link copied to clipboard

Returns an array of type UByteArray, which is a view of this array where each element is an unsigned reinterpretation of the corresponding element of this array.

Link copied to clipboard

Returns an average value of elements in the array.

Link copied to clipboard
fun ByteArray.binarySearch(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size): Int
fun ByteArray.binarySearch(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size): Int
fun ByteArray.binarySearch(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size): Int

Searches the array or the range of the array for the provided element using the binary search algorithm. The array is expected to be sorted, otherwise the result is undefined.

Link copied to clipboard
inline operator fun ByteArray.component1(): Byte
inline operator fun ByteArray.component1(): Byte
inline operator fun ByteArray.component1(): Byte

Returns 1st element from the array.

Link copied to clipboard
inline operator fun ByteArray.component2(): Byte
inline operator fun ByteArray.component2(): Byte
inline operator fun ByteArray.component2(): Byte

Returns 2nd element from the array.

Link copied to clipboard
inline operator fun ByteArray.component3(): Byte
inline operator fun ByteArray.component3(): Byte
inline operator fun ByteArray.component3(): Byte

Returns 3rd element from the array.

Link copied to clipboard
inline operator fun ByteArray.component4(): Byte
inline operator fun ByteArray.component4(): Byte
inline operator fun ByteArray.component4(): Byte

Returns 4th element from the array.

Link copied to clipboard
inline operator fun ByteArray.component5(): Byte
inline operator fun ByteArray.component5(): Byte
inline operator fun ByteArray.component5(): Byte

Returns 5th element from the array.

Link copied to clipboard
operator fun ByteArray.contains(element: Byte): Boolean
operator fun ByteArray.contains(element: Byte): Boolean
operator fun ByteArray.contains(element: Byte): Boolean

Returns true if element is found in the array.

Link copied to clipboard
expect infix fun ByteArray.contentEquals(other: ByteArray): Boolean
expect infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean
expect infix fun ByteArray.contentEquals(other: ByteArray): Boolean
expect infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean
expect infix fun ByteArray.contentEquals(other: ByteArray): Boolean
expect infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

actual infix inline fun ByteArray.contentEquals(other: ByteArray): Boolean
@JvmName(name = "contentEqualsNullable")
actual infix inline fun ByteArray?.contentEquals(other: ByteArray?): Boolean
actual infix inline fun ByteArray.contentEquals(other: ByteArray): Boolean
@JvmName(name = "contentEqualsNullable")
actual infix inline fun ByteArray?.contentEquals(other: ByteArray?): Boolean
actual infix inline fun ByteArray.contentEquals(other: ByteArray): Boolean
@JvmName(name = "contentEqualsNullable")
actual infix inline fun ByteArray?.contentEquals(other: ByteArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

actual infix fun ByteArray.contentEquals(other: ByteArray): Boolean
actual infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean
actual infix fun ByteArray.contentEquals(other: ByteArray): Boolean
actual infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean
actual infix fun ByteArray.contentEquals(other: ByteArray): Boolean
actual infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

actual infix fun ByteArray.contentEquals(other: ByteArray): Boolean
actual infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean
actual infix fun ByteArray.contentEquals(other: ByteArray): Boolean
actual infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean
actual infix fun ByteArray.contentEquals(other: ByteArray): Boolean
actual infix fun ByteArray?.contentEquals(other: ByteArray?): Boolean

Returns true if the two specified arrays are structurally equal to one another, i.e. contain the same number of the same elements in the same order.

Link copied to clipboard

Returns a hash code based on the contents of this array as if it is List.

actual inline fun ByteArray.contentHashCode(): Int
@JvmName(name = "contentHashCodeNullable")
actual inline fun ByteArray?.contentHashCode(): Int
actual inline fun ByteArray.contentHashCode(): Int
@JvmName(name = "contentHashCodeNullable")
actual inline fun ByteArray?.contentHashCode(): Int
actual inline fun ByteArray.contentHashCode(): Int
@JvmName(name = "contentHashCodeNullable")
actual inline fun ByteArray?.contentHashCode(): Int

Returns a hash code based on the contents of this array as if it is List.

Returns a hash code based on the contents of this array as if it is List.

Returns a hash code based on the contents of this array as if it is List.

Link copied to clipboard

Returns a string representation of the contents of the specified array as if it is List.

actual inline fun ByteArray.contentToString(): String
@JvmName(name = "contentToStringNullable")
actual inline fun ByteArray?.contentToString(): String
actual inline fun ByteArray.contentToString(): String
@JvmName(name = "contentToStringNullable")
actual inline fun ByteArray?.contentToString(): String
actual inline fun ByteArray.contentToString(): String
@JvmName(name = "contentToStringNullable")
actual inline fun ByteArray?.contentToString(): String

Returns a string representation of the contents of the specified array as if it is List.

Returns a string representation of the contents of the specified array as if it is List.

Returns a string representation of the contents of the specified array as if it is List.

Link copied to clipboard
expect fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
expect fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
expect fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray

Copies this array or its subrange into the destination array and returns that array.

actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray

Copies this array or its subrange into the destination array and returns that array.

actual inline fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual inline fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual inline fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray

Copies this array or its subrange into the destination array and returns that array.

actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray
actual fun ByteArray.copyInto(    destination: ByteArray,     destinationOffset: Int = 0,     startIndex: Int = 0,     endIndex: Int = size): ByteArray

Copies this array or its subrange into the destination array and returns that array.

Link copied to clipboard
expect fun ByteArray.copyOf(): ByteArray
expect fun ByteArray.copyOf(): ByteArray
expect fun ByteArray.copyOf(): ByteArray

Returns new array which is a copy of the original array.

expect fun ByteArray.copyOf(newSize: Int): ByteArray
expect fun ByteArray.copyOf(newSize: Int): ByteArray
expect fun ByteArray.copyOf(newSize: Int): ByteArray

Returns new array which is a copy of the original array, resized to the given newSize. The copy is either truncated or padded at the end with zero values if necessary.

actual inline fun ByteArray.copyOf(): ByteArray
actual inline fun ByteArray.copyOf(): ByteArray
actual inline fun ByteArray.copyOf(): ByteArray

Returns new array which is a copy of the original array.

actual inline fun ByteArray.copyOf(newSize: Int): ByteArray
actual inline fun ByteArray.copyOf(newSize: Int): ByteArray
actual inline fun ByteArray.copyOf(newSize: Int): ByteArray

Returns new array which is a copy of the original array, resized to the given newSize. The copy is either truncated or padded at the end with zero values if necessary.

actual inline fun ByteArray.copyOf(): ByteArray
actual inline fun ByteArray.copyOf(): ByteArray
actual inline fun ByteArray.copyOf(): ByteArray

Returns new array which is a copy of the original array.

actual fun ByteArray.copyOf(newSize: Int): ByteArray
actual fun ByteArray.copyOf(newSize: Int): ByteArray
actual fun ByteArray.copyOf(newSize: Int): ByteArray

Returns new array which is a copy of the original array, resized to the given newSize. The copy is either truncated or padded at the end with zero values if necessary.

actual fun ByteArray.copyOf(): ByteArray
actual fun ByteArray.copyOf(): ByteArray
actual fun ByteArray.copyOf(): ByteArray

Returns new array which is a copy of the original array.

actual fun ByteArray.copyOf(newSize: Int): ByteArray
actual fun ByteArray.copyOf(newSize: Int): ByteArray
actual fun ByteArray.copyOf(newSize: Int): ByteArray

Returns new array which is a copy of the original array, resized to the given newSize. The copy is either truncated or padded at the end with zero values if necessary.

Link copied to clipboard
expect fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
expect fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
expect fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray

Returns a new array which is a copy of the specified range of the original array.

@JvmName(name = "copyOfRangeInline")
actual inline fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
@JvmName(name = "copyOfRangeInline")
actual inline fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
@JvmName(name = "copyOfRangeInline")
actual inline fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray

Returns a new array which is a copy of the specified range of the original array.

actual fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
actual fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
actual fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray

Returns a new array which is a copy of the specified range of the original array.

actual fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
actual fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray
actual fun ByteArray.copyOfRange(fromIndex: Int, toIndex: Int): ByteArray

Returns a new array which is a copy of the specified range of the original array.

Link copied to clipboard
inline fun ByteArray.count(): Int
inline fun ByteArray.count(): Int
inline fun ByteArray.count(): Int

Returns the number of elements in this array.

inline fun ByteArray.count(predicate: (Byte) -> Boolean): Int
inline fun ByteArray.count(predicate: (Byte) -> Boolean): Int
inline fun ByteArray.count(predicate: (Byte) -> Boolean): Int

Returns the number of elements matching the given predicate.

Link copied to clipboard

Decodes a string from the bytes in UTF-8 encoding in this array.

expect fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
expect fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
expect fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String

Decodes a string from the bytes in UTF-8 encoding in this array or its subrange.

Decodes a string from the bytes in UTF-8 encoding in this array.

actual fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
actual fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
actual fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String

Decodes a string from the bytes in UTF-8 encoding in this array or its subrange.

Decodes a string from the bytes in UTF-8 encoding in this array.

actual fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
actual fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
actual fun ByteArray.decodeToString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String

Decodes a string from the bytes in UTF-8 encoding in this array or its subrange.

Decodes a string from the bytes in UTF-8 encoding in this array.

actual fun ByteArray.decodeToString(    startIndex: Int,     endIndex: Int,     throwOnInvalidSequence: Boolean): String
actual fun ByteArray.decodeToString(    startIndex: Int,     endIndex: Int,     throwOnInvalidSequence: Boolean): String
actual fun ByteArray.decodeToString(    startIndex: Int,     endIndex: Int,     throwOnInvalidSequence: Boolean): String

Decodes a string from the bytes in UTF-8 encoding in this array or its subrange.

Link copied to clipboard

Returns a list containing only distinct elements from the given array.

Link copied to clipboard
inline fun <K> ByteArray.distinctBy(selector: (Byte) -> K): List<Byte>
inline fun <K> ByteArray.distinctBy(selector: (Byte) -> K): List<Byte>
inline fun <K> ByteArray.distinctBy(selector: (Byte) -> K): List<Byte>

Returns a list containing only elements from the given array having distinct keys returned by the given selector function.

Link copied to clipboard

Returns a list containing all elements except first n elements.

Link copied to clipboard

Returns a list containing all elements except last n elements.

Link copied to clipboard
inline fun ByteArray.dropLastWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.dropLastWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.dropLastWhile(predicate: (Byte) -> Boolean): List<Byte>

Returns a list containing all elements except last elements that satisfy the given predicate.

Link copied to clipboard
inline fun ByteArray.dropWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.dropWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.dropWhile(predicate: (Byte) -> Boolean): List<Byte>

Returns a list containing all elements except first elements that satisfy the given predicate.

Link copied to clipboard
expect fun ByteArray.elementAt(index: Int): Byte
expect fun ByteArray.elementAt(index: Int): Byte
expect fun ByteArray.elementAt(index: Int): Byte

Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this array.

actual inline fun ByteArray.elementAt(index: Int): Byte
actual inline fun ByteArray.elementAt(index: Int): Byte
actual inline fun ByteArray.elementAt(index: Int): Byte

Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this array.

actual fun ByteArray.elementAt(index: Int): Byte
actual fun ByteArray.elementAt(index: Int): Byte
actual fun ByteArray.elementAt(index: Int): Byte

Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this array.

actual inline fun ByteArray.elementAt(index: Int): Byte
actual inline fun ByteArray.elementAt(index: Int): Byte
actual inline fun ByteArray.elementAt(index: Int): Byte

Returns an element at the given index or throws an IndexOutOfBoundsException if the index is out of bounds of this array.

Link copied to clipboard
inline fun ByteArray.elementAtOrElse(index: Int, defaultValue: (Int) -> Byte): Byte
inline fun ByteArray.elementAtOrElse(index: Int, defaultValue: (Int) -> Byte): Byte
inline fun ByteArray.elementAtOrElse(index: Int, defaultValue: (Int) -> Byte): Byte

Returns an element at the given index or the result of calling the defaultValue function if the index is out of bounds of this array.

Link copied to clipboard
inline fun ByteArray.elementAtOrNull(index: Int): Byte?
inline fun ByteArray.elementAtOrNull(index: Int): Byte?
inline fun ByteArray.elementAtOrNull(index: Int): Byte?

Returns an element at the given index or null if the index is out of bounds of this array.

Link copied to clipboard
expect fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
expect fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
expect fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)

Fills this array or its subrange with the specified element value.

actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)

Fills this array or its subrange with the specified element value.

actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)

Fills this array or its subrange with the specified element value.

actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)
actual fun ByteArray.fill(    element: Byte,     fromIndex: Int = 0,     toIndex: Int = size)

Fills this array or its subrange with the specified element value.

Link copied to clipboard
inline fun ByteArray.filter(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.filter(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.filter(predicate: (Byte) -> Boolean): List<Byte>

Returns a list containing only elements matching the given predicate.

Link copied to clipboard
inline fun ByteArray.filterIndexed(predicate: (index: Int, Byte) -> Boolean): List<Byte>
inline fun ByteArray.filterIndexed(predicate: (index: Int, Byte) -> Boolean): List<Byte>
inline fun ByteArray.filterIndexed(predicate: (index: Int, Byte) -> Boolean): List<Byte>

Returns a list containing only elements matching the given predicate.

Link copied to clipboard
inline fun <C : MutableCollection<in Byte>> ByteArray.filterIndexedTo(destination: C, predicate: (index: Int, Byte) -> Boolean): C
inline fun <C : MutableCollection<in Byte>> ByteArray.filterIndexedTo(destination: C, predicate: (index: Int, Byte) -> Boolean): C
inline fun <C : MutableCollection<in Byte>> ByteArray.filterIndexedTo(destination: C, predicate: (index: Int, Byte) -> Boolean): C

Appends all elements matching the given predicate to the given destination.

Link copied to clipboard
inline fun ByteArray.filterNot(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.filterNot(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.filterNot(predicate: (Byte) -> Boolean): List<Byte>

Returns a list containing all elements not matching the given predicate.

Link copied to clipboard
inline fun <C : MutableCollection<in Byte>> ByteArray.filterNotTo(destination: C, predicate: (Byte) -> Boolean): C
inline fun <C : MutableCollection<in Byte>> ByteArray.filterNotTo(destination: C, predicate: (Byte) -> Boolean): C
inline fun <C : MutableCollection<in Byte>> ByteArray.filterNotTo(destination: C, predicate: (Byte) -> Boolean): C

Appends all elements not matching the given predicate to the given destination.

Link copied to clipboard
inline fun <C : MutableCollection<in Byte>> ByteArray.filterTo(destination: C, predicate: (Byte) -> Boolean): C
inline fun <C : MutableCollection<in Byte>> ByteArray.filterTo(destination: C, predicate: (Byte) -> Boolean): C
inline fun <C : MutableCollection<in Byte>> ByteArray.filterTo(destination: C, predicate: (Byte) -> Boolean): C

Appends all elements matching the given predicate to the given destination.

Link copied to clipboard
inline fun ByteArray.find(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.find(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.find(predicate: (Byte) -> Boolean): Byte?

Returns the first element matching the given predicate, or null if no such element was found.

Link copied to clipboard
inline fun ByteArray.findLast(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.findLast(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.findLast(predicate: (Byte) -> Boolean): Byte?

Returns the last element matching the given predicate, or null if no such element was found.

Link copied to clipboard

Returns first element.

inline fun ByteArray.first(predicate: (Byte) -> Boolean): Byte
inline fun ByteArray.first(predicate: (Byte) -> Boolean): Byte
inline fun ByteArray.first(predicate: (Byte) -> Boolean): Byte

Returns the first element matching the given predicate.

Link copied to clipboard

Returns the first element, or null if the array is empty.

inline fun ByteArray.firstOrNull(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.firstOrNull(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.firstOrNull(predicate: (Byte) -> Boolean): Byte?

Returns the first element matching the given predicate, or null if element was not found.

Link copied to clipboard
inline fun <R> ByteArray.flatMap(transform: (Byte) -> Iterable<R>): List<R>
inline fun <R> ByteArray.flatMap(transform: (Byte) -> Iterable<R>): List<R>
inline fun <R> ByteArray.flatMap(transform: (Byte) -> Iterable<R>): List<R>

Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.

Link copied to clipboard
@JvmName(name = "flatMapIndexedIterable")
inline fun <R> ByteArray.flatMapIndexed(transform: (index: Int, Byte) -> Iterable<R>): List<R>
@JvmName(name = "flatMapIndexedIterable")
inline fun <R> ByteArray.flatMapIndexed(transform: (index: Int, Byte) -> Iterable<R>): List<R>
@JvmName(name = "flatMapIndexedIterable")
inline fun <R> ByteArray.flatMapIndexed(transform: (index: Int, Byte) -> Iterable<R>): List<R>

Returns a single list of all elements yielded from results of transform function being invoked on each element and its index in the original array.

Link copied to clipboard
@JvmName(name = "flatMapIndexedIterableTo")
inline fun <R, C : MutableCollection<in R>> ByteArray.flatMapIndexedTo(destination: C, transform: (index: Int, Byte) -> Iterable<R>): C
@JvmName(name = "flatMapIndexedIterableTo")
inline fun <R, C : MutableCollection<in R>> ByteArray.flatMapIndexedTo(destination: C, transform: (index: Int, Byte) -> Iterable<R>): C
@JvmName(name = "flatMapIndexedIterableTo")
inline fun <R, C : MutableCollection<in R>> ByteArray.flatMapIndexedTo(destination: C, transform: (index: Int, Byte) -> Iterable<R>): C

Appends all elements yielded from results of transform function being invoked on each element and its index in the original array, to the given destination.

Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> ByteArray.flatMapTo(destination: C, transform: (Byte) -> Iterable<R>): C
inline fun <R, C : MutableCollection<in R>> ByteArray.flatMapTo(destination: C, transform: (Byte) -> Iterable<R>): C
inline fun <R, C : MutableCollection<in R>> ByteArray.flatMapTo(destination: C, transform: (Byte) -> Iterable<R>): C

Appends all elements yielded from results of transform function being invoked on each element of original array, to the given destination.

Link copied to clipboard
inline fun <R> ByteArray.fold(initial: R, operation: (acc: R, Byte) -> R): R
inline fun <R> ByteArray.fold(initial: R, operation: (acc: R, Byte) -> R): R
inline fun <R> ByteArray.fold(initial: R, operation: (acc: R, Byte) -> R): R

Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.

Link copied to clipboard
inline fun <R> ByteArray.foldIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): R
inline fun <R> ByteArray.foldIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): R
inline fun <R> ByteArray.foldIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): R

Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element with its index in the original array.

Link copied to clipboard
inline fun <R> ByteArray.foldRight(initial: R, operation: (Byte, acc: R) -> R): R
inline fun <R> ByteArray.foldRight(initial: R, operation: (Byte, acc: R) -> R): R
inline fun <R> ByteArray.foldRight(initial: R, operation: (Byte, acc: R) -> R): R

Accumulates value starting with initial value and applying operation from right to left to each element and current accumulator value.

Link copied to clipboard
inline fun <R> ByteArray.foldRightIndexed(initial: R, operation: (index: Int, Byte, acc: R) -> R): R
inline fun <R> ByteArray.foldRightIndexed(initial: R, operation: (index: Int, Byte, acc: R) -> R): R
inline fun <R> ByteArray.foldRightIndexed(initial: R, operation: (index: Int, Byte, acc: R) -> R): R

Accumulates value starting with initial value and applying operation from right to left to each element with its index in the original array and current accumulator value.

Link copied to clipboard
inline fun ByteArray.forEach(action: (Byte) -> Unit)
inline fun ByteArray.forEach(action: (Byte) -> Unit)
inline fun ByteArray.forEach(action: (Byte) -> Unit)

Performs the given action on each element.

Link copied to clipboard
inline fun ByteArray.forEachIndexed(action: (index: Int, Byte) -> Unit)
inline fun ByteArray.forEachIndexed(action: (index: Int, Byte) -> Unit)
inline fun ByteArray.forEachIndexed(action: (index: Int, Byte) -> Unit)

Performs the given action on each element, providing sequential index with the element.

Link copied to clipboard
external fun ByteArray.getCharAt(index: Int): Char
external fun ByteArray.getCharAt(index: Int): Char
external fun ByteArray.getCharAt(index: Int): Char

Gets Char out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.getDoubleAt(index: Int): Double
external fun ByteArray.getDoubleAt(index: Int): Double
external fun ByteArray.getDoubleAt(index: Int): Double

Gets Double out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.getFloatAt(index: Int): Float
external fun ByteArray.getFloatAt(index: Int): Float
external fun ByteArray.getFloatAt(index: Int): Float

Gets Float out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.getIntAt(index: Int): Int
external fun ByteArray.getIntAt(index: Int): Int
external fun ByteArray.getIntAt(index: Int): Int

Gets Int out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.getLongAt(index: Int): Long
external fun ByteArray.getLongAt(index: Int): Long
external fun ByteArray.getLongAt(index: Int): Long

Gets Long out of the ByteArray byte buffer at specified index index

Link copied to clipboard
inline fun ByteArray.getOrElse(index: Int, defaultValue: (Int) -> Byte): Byte
inline fun ByteArray.getOrElse(index: Int, defaultValue: (Int) -> Byte): Byte
inline fun ByteArray.getOrElse(index: Int, defaultValue: (Int) -> Byte): Byte

Returns an element at the given index or the result of calling the defaultValue function if the index is out of bounds of this array.

Link copied to clipboard
fun ByteArray.getOrNull(index: Int): Byte?
fun ByteArray.getOrNull(index: Int): Byte?
fun ByteArray.getOrNull(index: Int): Byte?

Returns an element at the given index or null if the index is out of bounds of this array.

Link copied to clipboard
external fun ByteArray.getShortAt(index: Int): Short
external fun ByteArray.getShortAt(index: Int): Short
external fun ByteArray.getShortAt(index: Int): Short

Gets Short out of the ByteArray byte buffer at specified index index

Link copied to clipboard
@ExperimentalUnsignedTypes
fun ByteArray.getUByteAt(index: Int): UByte
@ExperimentalUnsignedTypes
fun ByteArray.getUByteAt(index: Int): UByte
@ExperimentalUnsignedTypes
fun ByteArray.getUByteAt(index: Int): UByte

Gets UByte out of the ByteArray byte buffer at specified index index

Link copied to clipboard
@ExperimentalUnsignedTypes
external fun ByteArray.getUIntAt(index: Int): UInt
@ExperimentalUnsignedTypes
external fun ByteArray.getUIntAt(index: Int): UInt
@ExperimentalUnsignedTypes
external fun ByteArray.getUIntAt(index: Int): UInt

Gets UInt out of the ByteArray byte buffer at specified index index

Link copied to clipboard
@ExperimentalUnsignedTypes
external fun ByteArray.getULongAt(index: Int): ULong
@ExperimentalUnsignedTypes
external fun ByteArray.getULongAt(index: Int): ULong
@ExperimentalUnsignedTypes
external fun ByteArray.getULongAt(index: Int): ULong

Gets ULong out of the ByteArray byte buffer at specified index index

Link copied to clipboard
@ExperimentalUnsignedTypes
external fun ByteArray.getUShortAt(index: Int): UShort
@ExperimentalUnsignedTypes
external fun ByteArray.getUShortAt(index: Int): UShort
@ExperimentalUnsignedTypes
external fun ByteArray.getUShortAt(index: Int): UShort

Gets UShort out of the ByteArray byte buffer at specified index index

Link copied to clipboard
inline fun <K> ByteArray.groupBy(keySelector: (Byte) -> K): Map<K, List<Byte>>
inline fun <K> ByteArray.groupBy(keySelector: (Byte) -> K): Map<K, List<Byte>>
inline fun <K> ByteArray.groupBy(keySelector: (Byte) -> K): Map<K, List<Byte>>

Groups elements of the original array by the key returned by the given keySelector function applied to each element and returns a map where each group key is associated with a list of corresponding elements.

inline fun <K, V> ByteArray.groupBy(keySelector: (Byte) -> K, valueTransform: (Byte) -> V): Map<K, List<V>>
inline fun <K, V> ByteArray.groupBy(keySelector: (Byte) -> K, valueTransform: (Byte) -> V): Map<K, List<V>>
inline fun <K, V> ByteArray.groupBy(keySelector: (Byte) -> K, valueTransform: (Byte) -> V): Map<K, List<V>>

Groups values returned by the valueTransform function applied to each element of the original array by the key returned by the given keySelector function applied to the element and returns a map where each group key is associated with a list of corresponding values.

Link copied to clipboard
inline fun <K, M : MutableMap<in K, MutableList<Byte>>> ByteArray.groupByTo(destination: M, keySelector: (Byte) -> K): M
inline fun <K, M : MutableMap<in K, MutableList<Byte>>> ByteArray.groupByTo(destination: M, keySelector: (Byte) -> K): M
inline fun <K, M : MutableMap<in K, MutableList<Byte>>> ByteArray.groupByTo(destination: M, keySelector: (Byte) -> K): M

Groups elements of the original array by the key returned by the given keySelector function applied to each element and puts to the destination map each group key associated with a list of corresponding elements.

inline fun <K, V, M : MutableMap<in K, MutableList<V>>> ByteArray.groupByTo(    destination: M,     keySelector: (Byte) -> K,     valueTransform: (Byte) -> V): M
inline fun <K, V, M : MutableMap<in K, MutableList<V>>> ByteArray.groupByTo(    destination: M,     keySelector: (Byte) -> K,     valueTransform: (Byte) -> V): M
inline fun <K, V, M : MutableMap<in K, MutableList<V>>> ByteArray.groupByTo(    destination: M,     keySelector: (Byte) -> K,     valueTransform: (Byte) -> V): M

Groups values returned by the valueTransform function applied to each element of the original array by the key returned by the given keySelector function applied to the element and puts to the destination map each group key associated with a list of corresponding values.

Link copied to clipboard
fun ByteArray.indexOf(element: Byte): Int
fun ByteArray.indexOf(element: Byte): Int
fun ByteArray.indexOf(element: Byte): Int

Returns first index of element, or -1 if the array does not contain element.

Link copied to clipboard
inline fun ByteArray.indexOfFirst(predicate: (Byte) -> Boolean): Int
inline fun ByteArray.indexOfFirst(predicate: (Byte) -> Boolean): Int
inline fun ByteArray.indexOfFirst(predicate: (Byte) -> Boolean): Int

Returns index of the first element matching the given predicate, or -1 if the array does not contain such element.

Link copied to clipboard
inline fun ByteArray.indexOfLast(predicate: (Byte) -> Boolean): Int
inline fun ByteArray.indexOfLast(predicate: (Byte) -> Boolean): Int
inline fun ByteArray.indexOfLast(predicate: (Byte) -> Boolean): Int

Returns index of the last element matching the given predicate, or -1 if the array does not contain such element.

Link copied to clipboard

Returns the range of valid indices for the array.

Link copied to clipboard

Creates an input stream for reading data from this byte array.

inline fun ByteArray.inputStream(offset: Int, length: Int): ByteArrayInputStream
inline fun ByteArray.inputStream(offset: Int, length: Int): ByteArrayInputStream
inline fun ByteArray.inputStream(offset: Int, length: Int): ByteArrayInputStream

Creates an input stream for reading data from the specified portion of this byte array.

Link copied to clipboard
infix fun ByteArray.intersect(other: Iterable<Byte>): Set<Byte>
infix fun ByteArray.intersect(other: Iterable<Byte>): Set<Byte>
infix fun ByteArray.intersect(other: Iterable<Byte>): Set<Byte>

Returns a set containing all elements that are contained by both this array and the specified collection.

Link copied to clipboard
inline fun ByteArray.isEmpty(): Boolean
inline fun ByteArray.isEmpty(): Boolean
inline fun ByteArray.isEmpty(): Boolean

Returns true if the array is empty.

Link copied to clipboard

Returns true if the array is not empty.

Link copied to clipboard
fun <A : Appendable> ByteArray.joinTo(    buffer: A,     separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Byte) -> CharSequence? = null): A
fun <A : Appendable> ByteArray.joinTo(    buffer: A,     separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Byte) -> CharSequence? = null): A
fun <A : Appendable> ByteArray.joinTo(    buffer: A,     separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Byte) -> CharSequence? = null): A

Appends the string from all the elements separated using separator and using the given prefix and postfix if supplied.

Link copied to clipboard
fun ByteArray.joinToString(    separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Byte) -> CharSequence? = null): String
fun ByteArray.joinToString(    separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Byte) -> CharSequence? = null): String
fun ByteArray.joinToString(    separator: CharSequence = ", ",     prefix: CharSequence = "",     postfix: CharSequence = "",     limit: Int = -1,     truncated: CharSequence = "...",     transform: (Byte) -> CharSequence? = null): String

Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.

Link copied to clipboard

Returns the last element.

inline fun ByteArray.last(predicate: (Byte) -> Boolean): Byte
inline fun ByteArray.last(predicate: (Byte) -> Boolean): Byte
inline fun ByteArray.last(predicate: (Byte) -> Boolean): Byte

Returns the last element matching the given predicate.

Link copied to clipboard

Returns the last valid index for the array.

Link copied to clipboard
fun ByteArray.lastIndexOf(element: Byte): Int
fun ByteArray.lastIndexOf(element: Byte): Int
fun ByteArray.lastIndexOf(element: Byte): Int

Returns last index of element, or -1 if the array does not contain element.

Link copied to clipboard

Returns the last element, or null if the array is empty.

inline fun ByteArray.lastOrNull(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.lastOrNull(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.lastOrNull(predicate: (Byte) -> Boolean): Byte?

Returns the last element matching the given predicate, or null if no such element was found.

Link copied to clipboard
inline fun <R> ByteArray.map(transform: (Byte) -> R): List<R>
inline fun <R> ByteArray.map(transform: (Byte) -> R): List<R>
inline fun <R> ByteArray.map(transform: (Byte) -> R): List<R>

Returns a list containing the results of applying the given transform function to each element in the original array.

Link copied to clipboard
inline fun <R> ByteArray.mapIndexed(transform: (index: Int, Byte) -> R): List<R>
inline fun <R> ByteArray.mapIndexed(transform: (index: Int, Byte) -> R): List<R>
inline fun <R> ByteArray.mapIndexed(transform: (index: Int, Byte) -> R): List<R>

Returns a list containing the results of applying the given transform function to each element and its index in the original array.

Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> ByteArray.mapIndexedTo(destination: C, transform: (index: Int, Byte) -> R): C
inline fun <R, C : MutableCollection<in R>> ByteArray.mapIndexedTo(destination: C, transform: (index: Int, Byte) -> R): C
inline fun <R, C : MutableCollection<in R>> ByteArray.mapIndexedTo(destination: C, transform: (index: Int, Byte) -> R): C

Applies the given transform function to each element and its index in the original array and appends the results to the given destination.

Link copied to clipboard
inline fun <R, C : MutableCollection<in R>> ByteArray.mapTo(destination: C, transform: (Byte) -> R): C
inline fun <R, C : MutableCollection<in R>> ByteArray.mapTo(destination: C, transform: (Byte) -> R): C
inline fun <R, C : MutableCollection<in R>> ByteArray.mapTo(destination: C, transform: (Byte) -> R): C

Applies the given transform function to each element of the original array and appends the results to the given destination.

Link copied to clipboard
Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.maxBy(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.maxBy(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.maxBy(selector: (Byte) -> R): Byte?
Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.maxByOrNull(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.maxByOrNull(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.maxByOrNull(selector: (Byte) -> R): Byte?

Returns the first element yielding the largest value of the given function or null if there are no elements.

Link copied to clipboard
inline fun ByteArray.maxOf(selector: (Byte) -> Double): Double
inline fun ByteArray.maxOf(selector: (Byte) -> Float): Float
inline fun <R : Comparable<R>> ByteArray.maxOf(selector: (Byte) -> R): R
inline fun ByteArray.maxOf(selector: (Byte) -> Double): Double
inline fun ByteArray.maxOf(selector: (Byte) -> Float): Float
inline fun <R : Comparable<R>> ByteArray.maxOf(selector: (Byte) -> R): R
inline fun ByteArray.maxOf(selector: (Byte) -> Double): Double
inline fun ByteArray.maxOf(selector: (Byte) -> Float): Float
inline fun <R : Comparable<R>> ByteArray.maxOf(selector: (Byte) -> R): R

Returns the largest value among all values produced by selector function applied to each element in the array.

Link copied to clipboard
inline fun ByteArray.maxOfOrNull(selector: (Byte) -> Double): Double?
inline fun ByteArray.maxOfOrNull(selector: (Byte) -> Float): Float?
inline fun <R : Comparable<R>> ByteArray.maxOfOrNull(selector: (Byte) -> R): R?
inline fun ByteArray.maxOfOrNull(selector: (Byte) -> Double): Double?
inline fun ByteArray.maxOfOrNull(selector: (Byte) -> Float): Float?
inline fun <R : Comparable<R>> ByteArray.maxOfOrNull(selector: (Byte) -> R): R?
inline fun ByteArray.maxOfOrNull(selector: (Byte) -> Double): Double?
inline fun ByteArray.maxOfOrNull(selector: (Byte) -> Float): Float?
inline fun <R : Comparable<R>> ByteArray.maxOfOrNull(selector: (Byte) -> R): R?

Returns the largest value among all values produced by selector function applied to each element in the array or null if there are no elements.

Link copied to clipboard
inline fun <R> ByteArray.maxOfWith(comparator: Comparator<in R>, selector: (Byte) -> R): R
inline fun <R> ByteArray.maxOfWith(comparator: Comparator<in R>, selector: (Byte) -> R): R
inline fun <R> ByteArray.maxOfWith(comparator: Comparator<in R>, selector: (Byte) -> R): R

Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array.

Link copied to clipboard
inline fun <R> ByteArray.maxOfWithOrNull(comparator: Comparator<in R>, selector: (Byte) -> R): R?
inline fun <R> ByteArray.maxOfWithOrNull(comparator: Comparator<in R>, selector: (Byte) -> R): R?
inline fun <R> ByteArray.maxOfWithOrNull(comparator: Comparator<in R>, selector: (Byte) -> R): R?

Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array or null if there are no elements.

Link copied to clipboard

Returns the largest element or null if there are no elements.

Link copied to clipboard
fun ByteArray.maxWith(comparator: Comparator<in Byte>): Byte?
fun ByteArray.maxWith(comparator: Comparator<in Byte>): Byte?
fun ByteArray.maxWith(comparator: Comparator<in Byte>): Byte?
Link copied to clipboard
fun ByteArray.maxWithOrNull(comparator: Comparator<in Byte>): Byte?
fun ByteArray.maxWithOrNull(comparator: Comparator<in Byte>): Byte?
fun ByteArray.maxWithOrNull(comparator: Comparator<in Byte>): Byte?

Returns the first element having the largest value according to the provided comparator or null if there are no elements.

Link copied to clipboard
Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.minBy(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.minBy(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.minBy(selector: (Byte) -> R): Byte?
Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.minByOrNull(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.minByOrNull(selector: (Byte) -> R): Byte?
inline fun <R : Comparable<R>> ByteArray.minByOrNull(selector: (Byte) -> R): Byte?

Returns the first element yielding the smallest value of the given function or null if there are no elements.

Link copied to clipboard
inline fun ByteArray.minOf(selector: (Byte) -> Double): Double
inline fun ByteArray.minOf(selector: (Byte) -> Float): Float
inline fun <R : Comparable<R>> ByteArray.minOf(selector: (Byte) -> R): R
inline fun ByteArray.minOf(selector: (Byte) -> Double): Double
inline fun ByteArray.minOf(selector: (Byte) -> Float): Float
inline fun <R : Comparable<R>> ByteArray.minOf(selector: (Byte) -> R): R
inline fun ByteArray.minOf(selector: (Byte) -> Double): Double
inline fun ByteArray.minOf(selector: (Byte) -> Float): Float
inline fun <R : Comparable<R>> ByteArray.minOf(selector: (Byte) -> R): R

Returns the smallest value among all values produced by selector function applied to each element in the array.

Link copied to clipboard
inline fun ByteArray.minOfOrNull(selector: (Byte) -> Double): Double?
inline fun ByteArray.minOfOrNull(selector: (Byte) -> Float): Float?
inline fun <R : Comparable<R>> ByteArray.minOfOrNull(selector: (Byte) -> R): R?
inline fun ByteArray.minOfOrNull(selector: (Byte) -> Double): Double?
inline fun ByteArray.minOfOrNull(selector: (Byte) -> Float): Float?
inline fun <R : Comparable<R>> ByteArray.minOfOrNull(selector: (Byte) -> R): R?
inline fun ByteArray.minOfOrNull(selector: (Byte) -> Double): Double?
inline fun ByteArray.minOfOrNull(selector: (Byte) -> Float): Float?
inline fun <R : Comparable<R>> ByteArray.minOfOrNull(selector: (Byte) -> R): R?

Returns the smallest value among all values produced by selector function applied to each element in the array or null if there are no elements.

Link copied to clipboard
inline fun <R> ByteArray.minOfWith(comparator: Comparator<in R>, selector: (Byte) -> R): R
inline fun <R> ByteArray.minOfWith(comparator: Comparator<in R>, selector: (Byte) -> R): R
inline fun <R> ByteArray.minOfWith(comparator: Comparator<in R>, selector: (Byte) -> R): R

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array.

Link copied to clipboard
inline fun <R> ByteArray.minOfWithOrNull(comparator: Comparator<in R>, selector: (Byte) -> R): R?
inline fun <R> ByteArray.minOfWithOrNull(comparator: Comparator<in R>, selector: (Byte) -> R): R?
inline fun <R> ByteArray.minOfWithOrNull(comparator: Comparator<in R>, selector: (Byte) -> R): R?

Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array or null if there are no elements.

Link copied to clipboard

Returns the smallest element or null if there are no elements.

Link copied to clipboard
fun ByteArray.minWith(comparator: Comparator<in Byte>): Byte?
fun ByteArray.minWith(comparator: Comparator<in Byte>): Byte?
fun ByteArray.minWith(comparator: Comparator<in Byte>): Byte?
Link copied to clipboard
fun ByteArray.minWithOrNull(comparator: Comparator<in Byte>): Byte?
fun ByteArray.minWithOrNull(comparator: Comparator<in Byte>): Byte?
fun ByteArray.minWithOrNull(comparator: Comparator<in Byte>): Byte?

Returns the first element having the smallest value according to the provided comparator or null if there are no elements.

Link copied to clipboard

Returns true if the array has no elements.

inline fun ByteArray.none(predicate: (Byte) -> Boolean): Boolean
inline fun ByteArray.none(predicate: (Byte) -> Boolean): Boolean
inline fun ByteArray.none(predicate: (Byte) -> Boolean): Boolean

Returns true if no elements match the given predicate.

Link copied to clipboard
inline fun ByteArray.onEach(action: (Byte) -> Unit): ByteArray
inline fun ByteArray.onEach(action: (Byte) -> Unit): ByteArray
inline fun ByteArray.onEach(action: (Byte) -> Unit): ByteArray

Performs the given action on each element and returns the array itself afterwards.

Link copied to clipboard
inline fun ByteArray.onEachIndexed(action: (index: Int, Byte) -> Unit): ByteArray
inline fun ByteArray.onEachIndexed(action: (index: Int, Byte) -> Unit): ByteArray
inline fun ByteArray.onEachIndexed(action: (index: Int, Byte) -> Unit): ByteArray

Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.

Link copied to clipboard
inline fun ByteArray.partition(predicate: (Byte) -> Boolean): Pair<List<Byte>, List<Byte>>
inline fun ByteArray.partition(predicate: (Byte) -> Boolean): Pair<List<Byte>, List<Byte>>
inline fun ByteArray.partition(predicate: (Byte) -> Boolean): Pair<List<Byte>, List<Byte>>

Splits the original array into pair of lists, where first list contains elements for which predicate yielded true, while second list contains elements for which predicate yielded false.

Link copied to clipboard
expect operator fun ByteArray.plus(element: Byte): ByteArray
expect operator fun ByteArray.plus(element: Byte): ByteArray
expect operator fun ByteArray.plus(element: Byte): ByteArray

Returns an array containing all elements of the original array and then the given element.

expect operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
expect operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
expect operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements collection.

expect operator fun ByteArray.plus(elements: ByteArray): ByteArray
expect operator fun ByteArray.plus(elements: ByteArray): ByteArray
expect operator fun ByteArray.plus(elements: ByteArray): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements array.

actual operator fun ByteArray.plus(element: Byte): ByteArray
actual operator fun ByteArray.plus(element: Byte): ByteArray
actual operator fun ByteArray.plus(element: Byte): ByteArray

Returns an array containing all elements of the original array and then the given element.

actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements collection.

actual operator fun ByteArray.plus(elements: ByteArray): ByteArray
actual operator fun ByteArray.plus(elements: ByteArray): ByteArray
actual operator fun ByteArray.plus(elements: ByteArray): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements array.

actual inline operator fun ByteArray.plus(element: Byte): ByteArray
actual inline operator fun ByteArray.plus(element: Byte): ByteArray
actual inline operator fun ByteArray.plus(element: Byte): ByteArray

Returns an array containing all elements of the original array and then the given element.

actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements collection.

actual inline operator fun ByteArray.plus(elements: ByteArray): ByteArray
actual inline operator fun ByteArray.plus(elements: ByteArray): ByteArray
actual inline operator fun ByteArray.plus(elements: ByteArray): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements array.

actual operator fun ByteArray.plus(element: Byte): ByteArray
actual operator fun ByteArray.plus(element: Byte): ByteArray
actual operator fun ByteArray.plus(element: Byte): ByteArray

Returns an array containing all elements of the original array and then the given element.

actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray
actual operator fun ByteArray.plus(elements: Collection<Byte>): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements collection.

actual operator fun ByteArray.plus(elements: ByteArray): ByteArray
actual operator fun ByteArray.plus(elements: ByteArray): ByteArray
actual operator fun ByteArray.plus(elements: ByteArray): ByteArray

Returns an array containing all elements of the original array and then all elements of the given elements array.

Link copied to clipboard
inline fun ByteArray.random(): Byte
inline fun ByteArray.random(): Byte
inline fun ByteArray.random(): Byte

Returns a random element from this array.

fun ByteArray.random(random: Random): Byte
fun ByteArray.random(random: Random): Byte
fun ByteArray.random(random: Random): Byte

Returns a random element from this array using the specified source of randomness.

Link copied to clipboard
inline fun ByteArray.randomOrNull(): Byte?
inline fun ByteArray.randomOrNull(): Byte?
inline fun ByteArray.randomOrNull(): Byte?

Returns a random element from this array, or null if this array is empty.

Returns a random element from this array using the specified source of randomness, or null if this array is empty.

Link copied to clipboard
inline fun ByteArray.reduce(operation: (acc: Byte, Byte) -> Byte): Byte
inline fun ByteArray.reduce(operation: (acc: Byte, Byte) -> Byte): Byte
inline fun ByteArray.reduce(operation: (acc: Byte, Byte) -> Byte): Byte

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.

Link copied to clipboard
inline fun ByteArray.reduceIndexed(operation: (index: Int, acc: Byte, Byte) -> Byte): Byte
inline fun ByteArray.reduceIndexed(operation: (index: Int, acc: Byte, Byte) -> Byte): Byte
inline fun ByteArray.reduceIndexed(operation: (index: Int, acc: Byte, Byte) -> Byte): Byte

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original array.

Link copied to clipboard
inline fun ByteArray.reduceIndexedOrNull(operation: (index: Int, acc: Byte, Byte) -> Byte): Byte?
inline fun ByteArray.reduceIndexedOrNull(operation: (index: Int, acc: Byte, Byte) -> Byte): Byte?
inline fun ByteArray.reduceIndexedOrNull(operation: (index: Int, acc: Byte, Byte) -> Byte): Byte?

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element with its index in the original array.

Link copied to clipboard
inline fun ByteArray.reduceOrNull(operation: (acc: Byte, Byte) -> Byte): Byte?
inline fun ByteArray.reduceOrNull(operation: (acc: Byte, Byte) -> Byte): Byte?
inline fun ByteArray.reduceOrNull(operation: (acc: Byte, Byte) -> Byte): Byte?

Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.

Link copied to clipboard
inline fun ByteArray.reduceRight(operation: (Byte, acc: Byte) -> Byte): Byte
inline fun ByteArray.reduceRight(operation: (Byte, acc: Byte) -> Byte): Byte
inline fun ByteArray.reduceRight(operation: (Byte, acc: Byte) -> Byte): Byte

Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.

Link copied to clipboard
inline fun ByteArray.reduceRightIndexed(operation: (index: Int, Byte, acc: Byte) -> Byte): Byte
inline fun ByteArray.reduceRightIndexed(operation: (index: Int, Byte, acc: Byte) -> Byte): Byte
inline fun ByteArray.reduceRightIndexed(operation: (index: Int, Byte, acc: Byte) -> Byte): Byte

Accumulates value starting with the last element and applying operation from right to left to each element with its index in the original array and current accumulator value.

Link copied to clipboard
inline fun ByteArray.reduceRightIndexedOrNull(operation: (index: Int, Byte, acc: Byte) -> Byte): Byte?
inline fun ByteArray.reduceRightIndexedOrNull(operation: (index: Int, Byte, acc: Byte) -> Byte): Byte?
inline fun ByteArray.reduceRightIndexedOrNull(operation: (index: Int, Byte, acc: Byte) -> Byte): Byte?

Accumulates value starting with the last element and applying operation from right to left to each element with its index in the original array and current accumulator value.

Link copied to clipboard
inline fun ByteArray.reduceRightOrNull(operation: (Byte, acc: Byte) -> Byte): Byte?
inline fun ByteArray.reduceRightOrNull(operation: (Byte, acc: Byte) -> Byte): Byte?
inline fun ByteArray.reduceRightOrNull(operation: (Byte, acc: Byte) -> Byte): Byte?

Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.

Link copied to clipboard
Link copied to clipboard

Reverses elements in the array in-place.

fun ByteArray.reverse(fromIndex: Int, toIndex: Int)
fun ByteArray.reverse(fromIndex: Int, toIndex: Int)
fun ByteArray.reverse(fromIndex: Int, toIndex: Int)

Reverses elements of the array in the specified range in-place.

Link copied to clipboard

Returns a list with elements in reversed order.

Link copied to clipboard

Returns an array with elements of this array in reversed order.

Link copied to clipboard
inline fun <R> ByteArray.runningFold(initial: R, operation: (acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.runningFold(initial: R, operation: (acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.runningFold(initial: R, operation: (acc: R, Byte) -> R): List<R>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with initial value.

Link copied to clipboard
inline fun <R> ByteArray.runningFoldIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.runningFoldIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.runningFoldIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): List<R>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original array and current accumulator value that starts with initial value.

Link copied to clipboard
inline fun ByteArray.runningReduce(operation: (acc: Byte, Byte) -> Byte): List<Byte>
inline fun ByteArray.runningReduce(operation: (acc: Byte, Byte) -> Byte): List<Byte>
inline fun ByteArray.runningReduce(operation: (acc: Byte, Byte) -> Byte): List<Byte>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with the first element of this array.

Link copied to clipboard
inline fun ByteArray.runningReduceIndexed(operation: (index: Int, acc: Byte, Byte) -> Byte): List<Byte>
inline fun ByteArray.runningReduceIndexed(operation: (index: Int, acc: Byte, Byte) -> Byte): List<Byte>
inline fun ByteArray.runningReduceIndexed(operation: (index: Int, acc: Byte, Byte) -> Byte): List<Byte>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original array and current accumulator value that starts with the first element of this array.

Link copied to clipboard
inline fun <R> ByteArray.scan(initial: R, operation: (acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.scan(initial: R, operation: (acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.scan(initial: R, operation: (acc: R, Byte) -> R): List<R>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element and current accumulator value that starts with initial value.

Link copied to clipboard
inline fun <R> ByteArray.scanIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.scanIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): List<R>
inline fun <R> ByteArray.scanIndexed(initial: R, operation: (index: Int, acc: R, Byte) -> R): List<R>

Returns a list containing successive accumulation values generated by applying operation from left to right to each element, its index in the original array and current accumulator value that starts with initial value.

Link copied to clipboard
external fun ByteArray.setCharAt(index: Int, value: Char)
external fun ByteArray.setCharAt(index: Int, value: Char)
external fun ByteArray.setCharAt(index: Int, value: Char)

Sets Char out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.setDoubleAt(index: Int, value: Double)
external fun ByteArray.setDoubleAt(index: Int, value: Double)
external fun ByteArray.setDoubleAt(index: Int, value: Double)

Sets Double out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.setFloatAt(index: Int, value: Float)
external fun ByteArray.setFloatAt(index: Int, value: Float)
external fun ByteArray.setFloatAt(index: Int, value: Float)

Sets Float out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.setIntAt(index: Int, value: Int)
external fun ByteArray.setIntAt(index: Int, value: Int)
external fun ByteArray.setIntAt(index: Int, value: Int)

Sets Int out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.setLongAt(index: Int, value: Long)
external fun ByteArray.setLongAt(index: Int, value: Long)
external fun ByteArray.setLongAt(index: Int, value: Long)

Sets Long out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.setShortAt(index: Int, value: Short)
external fun ByteArray.setShortAt(index: Int, value: Short)
external fun ByteArray.setShortAt(index: Int, value: Short)

Sets Short out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.setUByteAt(index: Int, value: UByte)
external fun ByteArray.setUByteAt(index: Int, value: UByte)
external fun ByteArray.setUByteAt(index: Int, value: UByte)

Sets UByte out of the ByteArray byte buffer at specified index index

Link copied to clipboard
external fun ByteArray.setUIntAt(index: Int, value: UInt)
external fun ByteArray.setUIntAt(index: Int, value: UInt)
external fun ByteArray.setUIntAt(index: Int, value: UInt)

Sets UInt out of the ByteArray byte buffer at specified index index

Link copied to clipboard
@ExperimentalUnsignedTypes
external fun ByteArray.setULongAt(index: Int, value: ULong)
@ExperimentalUnsignedTypes
external fun ByteArray.setULongAt(index: Int, value: ULong)
@ExperimentalUnsignedTypes
external fun ByteArray.setULongAt(index: Int, value: ULong)

Sets ULong out of the ByteArray byte buffer at specified index index

Link copied to clipboard
@ExperimentalUnsignedTypes
external fun ByteArray.setUShortAt(index: Int, value: UShort)
@ExperimentalUnsignedTypes
external fun ByteArray.setUShortAt(index: Int, value: UShort)
@ExperimentalUnsignedTypes
external fun ByteArray.setUShortAt(index: Int, value: UShort)

Sets UShort out of the ByteArray byte buffer at specified index index

Link copied to clipboard

Randomly shuffles elements in this array in-place.

fun ByteArray.shuffle(random: Random)
fun ByteArray.shuffle(random: Random)
fun ByteArray.shuffle(random: Random)

Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.

Link copied to clipboard

Returns the single element, or throws an exception if the array is empty or has more than one element.

inline fun ByteArray.single(predicate: (Byte) -> Boolean): Byte
inline fun ByteArray.single(predicate: (Byte) -> Boolean): Byte
inline fun ByteArray.single(predicate: (Byte) -> Boolean): Byte

Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.

Link copied to clipboard

Returns single element, or null if the array is empty or has more than one element.

inline fun ByteArray.singleOrNull(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.singleOrNull(predicate: (Byte) -> Boolean): Byte?
inline fun ByteArray.singleOrNull(predicate: (Byte) -> Boolean): Byte?

Returns the single element matching the given predicate, or null if element was not found or more than one element was found.

Link copied to clipboard
fun ByteArray.slice(indices: IntRange): List<Byte>
fun ByteArray.slice(indices: IntRange): List<Byte>
fun ByteArray.slice(indices: IntRange): List<Byte>

Returns a list containing elements at indices in the specified indices range.

fun ByteArray.slice(indices: Iterable<Int>): List<Byte>
fun ByteArray.slice(indices: Iterable<Int>): List<Byte>
fun ByteArray.slice(indices: Iterable<Int>): List<Byte>

Returns a list containing elements at specified indices.

Link copied to clipboard

Returns an array containing elements of this array at specified indices.

Returns an array containing elements at indices in the specified indices range.

Link copied to clipboard
expect fun ByteArray.sort()
expect fun ByteArray.sort()
expect fun ByteArray.sort()

Sorts the array in-place.

expect fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
expect fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
expect fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

actual fun ByteArray.sort()
actual fun ByteArray.sort()
actual fun ByteArray.sort()

Sorts the array in-place.

actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

inline fun ByteArray.sort(noinline comparison: (a: Byte, b: Byte) -> Int)
inline fun ByteArray.sort(noinline comparison: (a: Byte, b: Byte) -> Int)
inline fun ByteArray.sort(noinline comparison: (a: Byte, b: Byte) -> Int)

Sorts the array in-place according to the order specified by the given comparison function.

actual fun ByteArray.sort()
actual fun ByteArray.sort()
actual fun ByteArray.sort()

Sorts the array in-place.

actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

actual fun ByteArray.sort()
actual fun ByteArray.sort()
actual fun ByteArray.sort()

Sorts the array in-place.

actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)
actual fun ByteArray.sort(fromIndex: Int = 0, toIndex: Int = size)

Sorts a range in the array in-place.

Link copied to clipboard

Sorts elements in the array in-place descending according to their natural sort order.

fun ByteArray.sortDescending(fromIndex: Int, toIndex: Int)
fun ByteArray.sortDescending(fromIndex: Int, toIndex: Int)
fun ByteArray.sortDescending(fromIndex: Int, toIndex: Int)

Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.

Link copied to clipboard

Returns a list of all elements sorted according to their natural sort order.

Link copied to clipboard

Returns an array with all elements of this array sorted according to their natural sort order.

Link copied to clipboard

Returns an array with all elements of this array sorted descending according to their natural sort order.

Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.sortedBy(crossinline selector: (Byte) -> R?): List<Byte>
inline fun <R : Comparable<R>> ByteArray.sortedBy(crossinline selector: (Byte) -> R?): List<Byte>
inline fun <R : Comparable<R>> ByteArray.sortedBy(crossinline selector: (Byte) -> R?): List<Byte>

Returns a list of all elements sorted according to natural sort order of the value returned by specified selector function.

Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.sortedByDescending(crossinline selector: (Byte) -> R?): List<Byte>
inline fun <R : Comparable<R>> ByteArray.sortedByDescending(crossinline selector: (Byte) -> R?): List<Byte>
inline fun <R : Comparable<R>> ByteArray.sortedByDescending(crossinline selector: (Byte) -> R?): List<Byte>

Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.

Link copied to clipboard

Returns a list of all elements sorted descending according to their natural sort order.

Link copied to clipboard
fun ByteArray.sortedWith(comparator: Comparator<in Byte>): List<Byte>
fun ByteArray.sortedWith(comparator: Comparator<in Byte>): List<Byte>
fun ByteArray.sortedWith(comparator: Comparator<in Byte>): List<Byte>

Returns a list of all elements sorted according to the specified comparator.

Link copied to clipboard
infix fun ByteArray.subtract(other: Iterable<Byte>): Set<Byte>
infix fun ByteArray.subtract(other: Iterable<Byte>): Set<Byte>
infix fun ByteArray.subtract(other: Iterable<Byte>): Set<Byte>

Returns a set containing all elements that are contained by this array and not contained by the specified collection.

Link copied to clipboard

Returns the sum of all elements in the array.

Link copied to clipboard
inline fun ByteArray.sumBy(selector: (Byte) -> Int): Int
inline fun ByteArray.sumBy(selector: (Byte) -> Int): Int
inline fun ByteArray.sumBy(selector: (Byte) -> Int): Int

Returns the sum of all values produced by selector function applied to each element in the array.

Link copied to clipboard
inline fun ByteArray.sumByDouble(selector: (Byte) -> Double): Double
inline fun ByteArray.sumByDouble(selector: (Byte) -> Double): Double
inline fun ByteArray.sumByDouble(selector: (Byte) -> Double): Double

Returns the sum of all values produced by selector function applied to each element in the array.

Link copied to clipboard
@JvmName(name = "sumOfDouble")
inline fun ByteArray.sumOf(selector: (Byte) -> Double): Double
@JvmName(name = "sumOfInt")
inline fun ByteArray.sumOf(selector: (Byte) -> Int): Int
@JvmName(name = "sumOfLong")
inline fun ByteArray.sumOf(selector: (Byte) -> Long): Long
@JvmName(name = "sumOfUInt")
inline fun ByteArray.sumOf(selector: (Byte) -> UInt): UInt
@JvmName(name = "sumOfULong")
inline fun ByteArray.sumOf(selector: (Byte) -> ULong): ULong
@JvmName(name = "sumOfDouble")
inline fun ByteArray.sumOf(selector: (Byte) -> Double): Double
@JvmName(name = "sumOfInt")
inline fun ByteArray.sumOf(selector: (Byte) -> Int): Int
@JvmName(name = "sumOfLong")
inline fun ByteArray.sumOf(selector: (Byte) -> Long): Long
@JvmName(name = "sumOfUInt")
inline fun ByteArray.sumOf(selector: (Byte) -> UInt): UInt
@JvmName(name = "sumOfULong")
inline fun ByteArray.sumOf(selector: (Byte) -> ULong): ULong
@JvmName(name = "sumOfDouble")
inline fun ByteArray.sumOf(selector: (Byte) -> Double): Double
@JvmName(name = "sumOfInt")
inline fun ByteArray.sumOf(selector: (Byte) -> Int): Int
@JvmName(name = "sumOfLong")
inline fun ByteArray.sumOf(selector: (Byte) -> Long): Long
@JvmName(name = "sumOfUInt")
inline fun ByteArray.sumOf(selector: (Byte) -> UInt): UInt
@JvmName(name = "sumOfULong")
inline fun ByteArray.sumOf(selector: (Byte) -> ULong): ULong

Returns the sum of all values produced by selector function applied to each element in the array.

@JvmName(name = "sumOfBigDecimal")
inline fun ByteArray.sumOf(selector: (Byte) -> BigDecimal): BigDecimal
@JvmName(name = "sumOfBigInteger")
inline fun ByteArray.sumOf(selector: (Byte) -> BigInteger): BigInteger
@JvmName(name = "sumOfBigDecimal")
inline fun ByteArray.sumOf(selector: (Byte) -> BigDecimal): BigDecimal
@JvmName(name = "sumOfBigInteger")
inline fun ByteArray.sumOf(selector: (Byte) -> BigInteger): BigInteger
@JvmName(name = "sumOfBigDecimal")
inline fun ByteArray.sumOf(selector: (Byte) -> BigDecimal): BigDecimal
@JvmName(name = "sumOfBigInteger")
inline fun ByteArray.sumOf(selector: (Byte) -> BigInteger): BigInteger

Returns the sum of all values produced by selector function applied to each element in the array.

Link copied to clipboard

Returns a list containing first n elements.

Link copied to clipboard

Returns a list containing last n elements.

Link copied to clipboard
inline fun ByteArray.takeLastWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.takeLastWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.takeLastWhile(predicate: (Byte) -> Boolean): List<Byte>

Returns a list containing last elements satisfying the given predicate.

Link copied to clipboard
inline fun ByteArray.takeWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.takeWhile(predicate: (Byte) -> Boolean): List<Byte>
inline fun ByteArray.takeWhile(predicate: (Byte) -> Boolean): List<Byte>

Returns a list containing first elements satisfying the given predicate.

Link copied to clipboard
fun <C : MutableCollection<in Byte>> ByteArray.toCollection(destination: C): C
fun <C : MutableCollection<in Byte>> ByteArray.toCollection(destination: C): C
fun <C : MutableCollection<in Byte>> ByteArray.toCollection(destination: C): C

Appends all elements to the given destination collection.

Link copied to clipboard

Returns a new HashSet of all elements.

Link copied to clipboard

Decodes a string from the bytes in UTF-8 encoding in this array. Bytes following the first occurrence of 0 byte, if it occurs, are not decoded.

fun ByteArray.toKString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
fun ByteArray.toKString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String
fun ByteArray.toKString(    startIndex: Int = 0,     endIndex: Int = this.size,     throwOnInvalidSequence: Boolean = false): String

Decodes a string from the bytes in UTF-8 encoding in this array or its subrange. Bytes following the first occurrence of 0 byte, if it occurs, are not decoded.

Link copied to clipboard

Returns a List containing all elements.

Link copied to clipboard

Returns a new MutableList filled with all elements of this array.

Link copied to clipboard

Returns a new MutableSet containing all distinct elements from the given array.

Link copied to clipboard

Returns a Set of all elements.

Link copied to clipboard
Link copied to clipboard
inline fun ByteArray.toString(charset: Charset): String
inline fun ByteArray.toString(charset: Charset): String
inline fun ByteArray.toString(charset: Charset): String

Converts the contents of this byte array to a string using the specified charset.

Link copied to clipboard

Returns a typed object array containing all of the elements of this primitive array.

Returns a typed object array containing all of the elements of this primitive array.

Returns a typed object array containing all of the elements of this primitive array.

Returns a typed object array containing all of the elements of this primitive array.

Link copied to clipboard

Returns an array of type UByteArray, which is a copy of this array where each element is an unsigned reinterpretation of the corresponding element of this array.

Link copied to clipboard
infix fun ByteArray.union(other: Iterable<Byte>): Set<Byte>
infix fun ByteArray.union(other: Iterable<Byte>): Set<Byte>
infix fun ByteArray.union(other: Iterable<Byte>): Set<Byte>

Returns a set containing all distinct elements from both collections.

Link copied to clipboard

Returns a lazy Iterable that wraps each element of the original array into an IndexedValue containing the index of that element and the element itself.

Link copied to clipboard
infix fun <R> ByteArray.zip(other: Array<out R>): List<Pair<Byte, R>>
infix fun ByteArray.zip(other: ByteArray): List<Pair<Byte, Byte>>
infix fun <R> ByteArray.zip(other: Array<out R>): List<Pair<Byte, R>>
infix fun ByteArray.zip(other: ByteArray): List<Pair<Byte, Byte>>
infix fun <R> ByteArray.zip(other: Array<out R>): List<Pair<Byte, R>>
infix fun ByteArray.zip(other: ByteArray): List<Pair<Byte, Byte>>

Returns a list of pairs built from the elements of this array and the other array with the same index. The returned list has length of the shortest collection.

inline fun <R, V> ByteArray.zip(other: Array<out R>, transform: (a: Byte, b: R) -> V): List<V>
inline fun <R, V> ByteArray.zip(other: Array<out R>, transform: (a: Byte, b: R) -> V): List<V>
inline fun <R, V> ByteArray.zip(other: Array<out R>, transform: (a: Byte, b: R) -> V): List<V>

Returns a list of values built from the elements of this array and the other array with the same index using the provided transform function applied to each pair of elements. The returned list has length of the shortest collection.

infix fun <R> ByteArray.zip(other: Iterable<R>): List<Pair<Byte, R>>
infix fun <R> ByteArray.zip(other: Iterable<R>): List<Pair<Byte, R>>
infix fun <R> ByteArray.zip(other: Iterable<R>): List<Pair<Byte, R>>

Returns a list of pairs built from the elements of this collection and other array with the same index. The returned list has length of the shortest collection.

inline fun <R, V> ByteArray.zip(other: Iterable<R>, transform: (a: Byte, b: R) -> V): List<V>
inline fun <R, V> ByteArray.zip(other: Iterable<R>, transform: (a: Byte, b: R) -> V): List<V>
inline fun <R, V> ByteArray.zip(other: Iterable<R>, transform: (a: Byte, b: R) -> V): List<V>

Returns a list of values built from the elements of this array and the other collection with the same index using the provided transform function applied to each pair of elements. The returned list has length of the shortest collection.

inline fun <V> ByteArray.zip(other: ByteArray, transform: (a: Byte, b: Byte) -> V): List<V>
inline fun <V> ByteArray.zip(other: ByteArray, transform: (a: Byte, b: Byte) -> V): List<V>
inline fun <V> ByteArray.zip(other: ByteArray, transform: (a: Byte, b: Byte) -> V): List<V>

Returns a list of values built from the elements of this array and the other array with the same index using the provided transform function applied to each pair of elements. The returned list has length of the shortest array.