ByteArray

class ByteArray(size: Int)(source)

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

Since Kotlin

1.0

An array of bytes.

Since Kotlin

1.3

Constructors

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

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

constructor(size: Int)

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

constructor(size: Int)
constructor(size: Int, init: (Int) -> Byte)

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

Properties

Link copied to clipboard

Returns the range of valid indices for the array.

Since Kotlin 1.0
Link copied to clipboard

Returns the last valid index for the array.

Since Kotlin 1.0
Link copied to clipboard
val size: Int

Returns the number of elements in the array.

Since Kotlin 1.0
val size: Int
Since Kotlin 1.3

Functions

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

Returns true if all elements match the given predicate.

Since Kotlin 1.0
Link copied to clipboard

Returns true if array has at least one element.

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

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

Since Kotlin 1.0
Link copied to clipboard

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

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

Returns a List that wraps the original array.

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

Returns a List that wraps the original array.

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

Returns a List that wraps the original array.

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

Returns a List that wraps the original array.

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
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.

Since Kotlin 1.3
Link copied to clipboard

Returns an average value of elements in the array.

Since Kotlin 1.0
Link copied to clipboard
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.

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

Returns 1st element from the array.

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

Returns 2nd element from the array.

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

Returns 3rd element from the array.

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

Returns 4th element from the array.

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

Returns 5th element from the array.

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

Returns true if element is found in the array.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.1
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.

Since Kotlin 1.4
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.

Since Kotlin 1.1
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.

Since Kotlin 1.4
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.

Since Kotlin 1.1
@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.

Since Kotlin 1.4
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.

Since Kotlin 1.3
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.

Since Kotlin 1.4
Link copied to clipboard

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

Since Kotlin 1.1

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

Since Kotlin 1.4

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

Since Kotlin 1.1

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

Since Kotlin 1.4
actual inline fun ByteArray.contentHashCode(): Int

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

Since Kotlin 1.1
@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.

Since Kotlin 1.4

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

Since Kotlin 1.3

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

Since Kotlin 1.4
Link copied to clipboard

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

Since Kotlin 1.1

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

Since Kotlin 1.4

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

Since Kotlin 1.1

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

Since Kotlin 1.4
actual inline fun ByteArray.contentToString(): String

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

Since Kotlin 1.1
@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.

Since Kotlin 1.4

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

Since Kotlin 1.3

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

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.3
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.

Since Kotlin 1.3
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.

Since Kotlin 1.3
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.

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

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

Since Kotlin 1.0
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.

Since Kotlin 1.0
actual inline fun ByteArray.copyOf(): ByteArray

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

Since Kotlin 1.1
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.

Since Kotlin 1.1
actual inline fun ByteArray.copyOf(): ByteArray

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

Since Kotlin 1.0
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.

Since Kotlin 1.0
actual fun ByteArray.copyOf(): ByteArray

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

Since Kotlin 1.3
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.

Since Kotlin 1.3
Link copied to clipboard
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.

Since Kotlin 1.0
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.

Since Kotlin 1.1
@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.

Since Kotlin 1.0
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.

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

Returns the number of elements in this array.

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

Returns the number of elements matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.4
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.

Since Kotlin 1.4

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

Since Kotlin 1.4
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.

Since Kotlin 1.4

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

Since Kotlin 1.4
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.

Since Kotlin 1.4

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

Since Kotlin 1.3
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.

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard

Returns a list containing all elements except first n elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a list containing all elements except last n elements.

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

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

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

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
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.

Since Kotlin 1.1
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.

Since Kotlin 1.0
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.

Since Kotlin 1.3
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

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

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

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

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

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

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

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

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

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

Returns a list containing only elements matching the given predicate.

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

Returns a list containing only elements matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard
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.

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

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

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

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

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

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

Since Kotlin 1.0
Link copied to clipboard

Returns first element.

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

Returns the first element matching the given predicate.

Since Kotlin 1.0
Link copied to clipboard

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

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

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
@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.

Since Kotlin 1.4
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

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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

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

Performs the given action on each element.

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

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

Since Kotlin 1.0
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.

Since Kotlin 1.0
operator external fun get(index: Int): Byte

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

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

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

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

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

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

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

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

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

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

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

Since Kotlin 1.3
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

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

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

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.3
Link copied to clipboard
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.

Since Kotlin 1.0
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
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.

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

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard

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

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

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

Since Kotlin 1.0
Link copied to clipboard
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.

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

Returns true if the array is empty.

Since Kotlin 1.0
Link copied to clipboard

Returns true if the array is not empty.

Since Kotlin 1.0
Link copied to clipboard
operator fun iterator(): ByteIterator

Creates an iterator over the elements of the array.

Since Kotlin 1.0
operator fun iterator(): ByteIterator

Creates an iterator over the elements of the array.

Since Kotlin 1.3
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

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard

Returns the last element.

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

Returns the last element matching the given predicate.

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

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

Since Kotlin 1.0
Link copied to clipboard

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

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

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
Since Kotlin 1.0
Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.maxBy(selector: (Byte) -> R): Byte?
Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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

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

Since Kotlin 1.4
Link copied to clipboard
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?

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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard

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

Since Kotlin 1.4
Link copied to clipboard
fun ByteArray.maxWith(comparator: Comparator<in Byte>): Byte?
Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
Since Kotlin 1.0
Link copied to clipboard
inline fun <R : Comparable<R>> ByteArray.minBy(selector: (Byte) -> R): Byte?
Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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

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

Since Kotlin 1.4
Link copied to clipboard
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?

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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard

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

Since Kotlin 1.4
Link copied to clipboard
fun ByteArray.minWith(comparator: Comparator<in Byte>): Byte?
Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard

Returns true if the array has no elements.

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

Returns true if no elements match the given predicate.

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

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

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

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

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

Since Kotlin 1.0
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.

Since Kotlin 1.0
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.

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

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

Since Kotlin 1.1
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.

Since Kotlin 1.1
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.

Since Kotlin 1.1
actual operator fun ByteArray.plus(element: Byte): ByteArray

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

Since Kotlin 1.0
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.

Since Kotlin 1.0
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.

Since Kotlin 1.0
actual operator fun ByteArray.plus(element: Byte): ByteArray

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

Since Kotlin 1.3
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.

Since Kotlin 1.3
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.

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

Returns a random element from this array.

Since Kotlin 1.3
fun ByteArray.random(random: Random): Byte

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

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

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

Since Kotlin 1.4

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

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
Since Kotlin 1.3
Link copied to clipboard

Reverses elements in the array in-place.

Since Kotlin 1.0
fun ByteArray.reverse(fromIndex: Int, toIndex: Int)

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

Since Kotlin 1.4
Link copied to clipboard

Returns a list with elements in reversed order.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
Link copied to clipboard
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.

Since Kotlin 1.4
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.

Since Kotlin 1.0
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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.3
Link copied to clipboard

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

Since Kotlin 1.3
Link copied to clipboard

Randomly shuffles elements in this array in-place.

Since Kotlin 1.4
fun ByteArray.shuffle(random: Random)

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

Since Kotlin 1.4
Link copied to clipboard

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

Since Kotlin 1.0
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.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
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.

Since Kotlin 1.0
Link copied to clipboard
fun ByteArray.slice(indices: Iterable<Int>): List<Byte>

Returns a list containing elements at specified indices.

Since Kotlin 1.0
fun ByteArray.slice(indices: IntRange): List<Byte>

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

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0

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

Since Kotlin 1.0
Link copied to clipboard
expect fun ByteArray.sort()

Sorts the array in-place.

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

Sorts a range in the array in-place.

Since Kotlin 1.4
actual fun ByteArray.sort()

Sorts the array in-place.

Since Kotlin 1.1
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.

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

Sorts a range in the array in-place.

Since Kotlin 1.4
actual fun ByteArray.sort()

Sorts the array in-place.

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

Sorts a range in the array in-place.

Since Kotlin 1.0
actual fun ByteArray.sort()

Sorts the array in-place.

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

Sorts a range in the array in-place.

Since Kotlin 1.4
Link copied to clipboard

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

Since Kotlin 1.0
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.

Since Kotlin 1.4
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard

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

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

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

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard

Returns the sum of all elements in the array.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
Link copied to clipboard
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.

Since Kotlin 1.0
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

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

Since Kotlin 1.4
@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.

Since Kotlin 1.5
@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.

Since Kotlin 1.4
Link copied to clipboard

Returns a list containing first n elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a list containing last n elements.

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

Returns a list containing last elements satisfying the given predicate.

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

Returns a list containing first elements satisfying the given predicate.

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

Appends all elements to the given destination collection.

Since Kotlin 1.0
Link copied to clipboard
Since Kotlin 1.3
Link copied to clipboard

Returns a new HashSet of all elements.

Since Kotlin 1.0
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.

Since Kotlin 1.3
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.

Since Kotlin 1.3
Link copied to clipboard

Returns a List containing all elements.

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0
Link copied to clipboard

Returns a Set of all elements.

Since Kotlin 1.0
Link copied to clipboard

Returns a new SortedSet of all elements.

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

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

Since Kotlin 1.0
Link copied to clipboard

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

Since Kotlin 1.0

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

Since Kotlin 1.1

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

Since Kotlin 1.0

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

Since Kotlin 1.3
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.

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

Returns a set containing all distinct elements from both collections.

Since Kotlin 1.0
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.

Since Kotlin 1.0
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>>

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.

Since Kotlin 1.0
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.

Since Kotlin 1.0
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.

Since Kotlin 1.0
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.

Since Kotlin 1.0
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.

Since Kotlin 1.0