ByteArray
class ByteArray
For Common, JVM, JS
An array of bytes. When targeting the JVM, instances of this class are represented as byte[]
.
For Native
An array of bytes.
Constructors
<init>
Creates a new array of the specified size, where each element is calculated by calling the specified init function.
<init>(size: Int, init: (Int) -> Byte)
Creates a new array of the specified size, with all elements initialized to zero.
<init>(size: Int)
Properties
size
Returns the number of elements in the array.
val size: Int
Functions
get
Returns the array element at the given index. This method can be called using the index operator.
operator fun get(index: Int): Byte
iterator
Creates an iterator over the elements of the array.
operator fun iterator(): ByteIterator
Extension Properties
indices
Returns the range of valid indices for the array.
val ByteArray.indices: IntRange
lastIndex
Returns the last valid index for the array.
val ByteArray.lastIndex: Int
Extension Functions
all
Returns true
if all elements match the given predicate.
fun ByteArray.all(predicate: (Byte) -> Boolean): Boolean
any
Returns true
if array has at least one element.
fun ByteArray.any(): Boolean
Returns true
if at least one element matches the given predicate.
fun ByteArray.any(predicate: (Byte) -> Boolean): Boolean
asIterable
Creates an Iterable instance that wraps the original array returning its elements when being iterated.
fun ByteArray.asIterable(): Iterable<Byte>
asSequence
Creates a Sequence instance that wraps the original array returning its elements when being iterated.
fun ByteArray.asSequence(): Sequence<Byte>
associate
associateBy
Returns a Map containing the elements from the given array indexed by the key returned from keySelector function applied to each element.
fun <K> ByteArray.associateBy( keySelector: (Byte) -> K ): Map<K, Byte>
Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given array.
fun <K, V> ByteArray.associateBy( keySelector: (Byte) -> K, valueTransform: (Byte) -> V ): Map<K, V>
associateByTo
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.
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 and and value is provided by the valueTransform function applied to elements of the given array.
fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateByTo( destination: M, keySelector: (Byte) -> K, valueTransform: (Byte) -> V ): M
associateTo
Populates and returns the destination mutable map with key-value pairs provided by transform function applied to each element of the given array.
fun <K, V, M : MutableMap<in K, in V>> ByteArray.associateTo( destination: M, transform: (Byte) -> Pair<K, V> ): M
associateWith
Returns a Map where keys are elements from the given array and values are produced by the valueSelector function applied to each element.
fun <V> ByteArray.associateWith( valueSelector: (Byte) -> V ): Map<Byte, V>
associateWithTo
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.
fun <V, M : MutableMap<in Byte, in V>> ByteArray.associateWithTo( destination: M, valueSelector: (Byte) -> V ): M
asUByteArray
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.
fun ByteArray.asUByteArray(): UByteArray
average
Returns an average value of elements in the array.
fun ByteArray.average(): Double
binarySearch
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.
fun ByteArray.binarySearch( element: Byte, fromIndex: Int = 0, toIndex: Int = size ): Int
component1
Returns 1st element from the array.
operator fun ByteArray.component1(): Byte
component2
Returns 2nd element from the array.
operator fun ByteArray.component2(): Byte
component3
Returns 3rd element from the array.
operator fun ByteArray.component3(): Byte
component4
Returns 4th element from the array.
operator fun ByteArray.component4(): Byte
component5
Returns 5th element from the array.
operator fun ByteArray.component5(): Byte
contains
Returns true
if element is found in the array.
operator fun ByteArray.contains(element: Byte): Boolean
count
Returns the number of elements in this array.
fun ByteArray.count(): Int
Returns the number of elements matching the given predicate.
fun ByteArray.count(predicate: (Byte) -> Boolean): Int
distinct
Returns a list containing only distinct elements from the given array.
fun ByteArray.distinct(): List<Byte>
distinctBy
Returns a list containing only elements from the given array having distinct keys returned by the given selector function.
fun <K> ByteArray.distinctBy( selector: (Byte) -> K ): List<Byte>
drop
Returns a list containing all elements except first n elements.
fun ByteArray.drop(n: Int): List<Byte>
dropLast
Returns a list containing all elements except last n elements.
fun ByteArray.dropLast(n: Int): List<Byte>
dropLastWhile
Returns a list containing all elements except last elements that satisfy the given predicate.
fun ByteArray.dropLastWhile( predicate: (Byte) -> Boolean ): List<Byte>
dropWhile
Returns a list containing all elements except first elements that satisfy the given predicate.
fun ByteArray.dropWhile( predicate: (Byte) -> Boolean ): List<Byte>
elementAtOrElse
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.
fun ByteArray.elementAtOrElse( index: Int, defaultValue: (Int) -> Byte ): Byte
elementAtOrNull
filter
Returns a list containing only elements matching the given predicate.
fun ByteArray.filter( predicate: (Byte) -> Boolean ): List<Byte>
filterIndexed
Returns a list containing only elements matching the given predicate.
fun ByteArray.filterIndexed( predicate: (index: Int, Byte) -> Boolean ): List<Byte>
filterIndexedTo
Appends all elements matching the given predicate to the given destination.
fun <C : MutableCollection<in Byte>> ByteArray.filterIndexedTo( destination: C, predicate: (index: Int, Byte) -> Boolean ): C
filterNot
Returns a list containing all elements not matching the given predicate.
fun ByteArray.filterNot( predicate: (Byte) -> Boolean ): List<Byte>
filterNotTo
Appends all elements not matching the given predicate to the given destination.
fun <C : MutableCollection<in Byte>> ByteArray.filterNotTo( destination: C, predicate: (Byte) -> Boolean ): C
filterTo
Appends all elements matching the given predicate to the given destination.
fun <C : MutableCollection<in Byte>> ByteArray.filterTo( destination: C, predicate: (Byte) -> Boolean ): C
find
Returns the first element matching the given predicate, or null
if no such element was found.
fun ByteArray.find(predicate: (Byte) -> Boolean): Byte?
findLast
Returns the last element matching the given predicate, or null
if no such element was found.
fun ByteArray.findLast(predicate: (Byte) -> Boolean): Byte?
first
Returns first element.
fun ByteArray.first(): Byte
Returns the first element matching the given predicate.
fun ByteArray.first(predicate: (Byte) -> Boolean): Byte
firstOrNull
Returns the first element, or null
if the array is empty.
fun ByteArray.firstOrNull(): Byte?
Returns the first element matching the given predicate, or null
if element was not found.
fun ByteArray.firstOrNull( predicate: (Byte) -> Boolean ): Byte?
flatMap
Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.
fun <R> ByteArray.flatMap( transform: (Byte) -> Iterable<R> ): List<R>
flatMapIndexed
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.
fun <R> ByteArray.flatMapIndexed( transform: (index: Int, Byte) -> Iterable<R> ): List<R>
flatMapIndexedTo
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.
fun <R, C : MutableCollection<in R>> ByteArray.flatMapIndexedTo( destination: C, transform: (index: Int, Byte) -> Iterable<R> ): C
flatMapTo
Appends all elements yielded from results of transform function being invoked on each element of original array, to the given destination.
fun <R, C : MutableCollection<in R>> ByteArray.flatMapTo( destination: C, transform: (Byte) -> Iterable<R> ): C
fold
foldIndexed
foldRight
foldRightIndexed
forEach
Performs the given action on each element.
fun ByteArray.forEach(action: (Byte) -> Unit)
forEachIndexed
Performs the given action on each element, providing sequential index with the element.
fun ByteArray.forEachIndexed( action: (index: Int, Byte) -> Unit)
getCharAt
getDoubleAt
getFloatAt
getIntAt
getLongAt
getOrElse
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.
fun ByteArray.getOrElse( index: Int, defaultValue: (Int) -> Byte ): Byte
getOrNull
getShortAt
getUByteAt
getUIntAt
getULongAt
getUShortAt
groupBy
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.
fun <K> ByteArray.groupBy( keySelector: (Byte) -> K ): Map<K, List<Byte>>
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.
fun <K, V> ByteArray.groupBy( keySelector: (Byte) -> K, valueTransform: (Byte) -> V ): Map<K, List<V>>
groupByTo
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.
fun <K, M : MutableMap<in K, MutableList<Byte>>> ByteArray.groupByTo( destination: M, keySelector: (Byte) -> K ): 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.
fun <K, V, M : MutableMap<in K, MutableList<V>>> ByteArray.groupByTo( destination: M, keySelector: (Byte) -> K, valueTransform: (Byte) -> V ): M
indexOf
Returns first index of element, or -1 if the array does not contain element.
fun ByteArray.indexOf(element: Byte): Int
indexOfFirst
Returns index of the first element matching the given predicate, or -1 if the array does not contain such element.
fun ByteArray.indexOfFirst(predicate: (Byte) -> Boolean): Int
indexOfLast
Returns index of the last element matching the given predicate, or -1 if the array does not contain such element.
fun ByteArray.indexOfLast(predicate: (Byte) -> Boolean): Int
inputStream
Creates an input stream for reading data from this byte array.
fun ByteArray.inputStream(): ByteArrayInputStream
Creates an input stream for reading data from the specified portion of this byte array.
fun ByteArray.inputStream( offset: Int, length: Int ): ByteArrayInputStream
intersect
Returns a set containing all elements that are contained by both this array and the specified collection.
infix fun ByteArray.intersect( other: Iterable<Byte> ): Set<Byte>
isEmpty
Returns true
if the array is empty.
fun ByteArray.isEmpty(): Boolean
isNotEmpty
Returns true
if the array is not empty.
fun ByteArray.isNotEmpty(): Boolean
joinTo
Appends the string from all the elements separated using separator and using the given prefix and postfix if supplied.
fun <A : Appendable> ByteArray.joinTo( buffer: A, separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: ((Byte) -> CharSequence)? = null ): A
joinToString
Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.
fun ByteArray.joinToString( separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: ((Byte) -> CharSequence)? = null ): String
last
Returns the last element.
fun ByteArray.last(): Byte
Returns the last element matching the given predicate.
fun ByteArray.last(predicate: (Byte) -> Boolean): Byte
lastIndexOf
Returns last index of element, or -1 if the array does not contain element.
fun ByteArray.lastIndexOf(element: Byte): Int
lastOrNull
Returns the last element, or null
if the array is empty.
fun ByteArray.lastOrNull(): Byte?
Returns the last element matching the given predicate, or null
if no such element was found.
fun ByteArray.lastOrNull(predicate: (Byte) -> Boolean): Byte?
map
Returns a list containing the results of applying the given transform function to each element in the original array.
fun <R> ByteArray.map(transform: (Byte) -> R): List<R>
mapIndexed
Returns a list containing the results of applying the given transform function to each element and its index in the original array.
fun <R> ByteArray.mapIndexed( transform: (index: Int, Byte) -> R ): List<R>
mapIndexedTo
Applies the given transform function to each element and its index in the original array and appends the results to the given destination.
fun <R, C : MutableCollection<in R>> ByteArray.mapIndexedTo( destination: C, transform: (index: Int, Byte) -> R ): C
mapTo
Applies the given transform function to each element of the original array and appends the results to the given destination.
fun <R, C : MutableCollection<in R>> ByteArray.mapTo( destination: C, transform: (Byte) -> R ): C
max
fun ByteArray.max(): Byte?
maxBy
fun <R : Comparable<R>> ByteArray.maxBy( selector: (Byte) -> R ): Byte?
maxByOrNull
Returns the first element yielding the largest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> ByteArray.maxByOrNull( selector: (Byte) -> R ): Byte?
maxOf
Returns the largest value among all values produced by selector function applied to each element in the array.
fun <R : Comparable<R>> any_array<R>.maxOf( selector: (Byte) -> R ): R
maxOfOrNull
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.
fun <R : Comparable<R>> any_array<R>.maxOfOrNull( selector: (Byte) -> R ): R?
maxOfWith
Returns the largest value according to the provided comparator among all values produced by selector function applied to each element in the array.
fun <R> ByteArray.maxOfWith( comparator: Comparator<in R>, selector: (Byte) -> R ): R
maxOfWithOrNull
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.
fun <R> ByteArray.maxOfWithOrNull( comparator: Comparator<in R>, selector: (Byte) -> R ): R?
maxOrNull
Returns the largest element or null
if there are no elements.
fun ByteArray.maxOrNull(): Byte?
maxWith
fun ByteArray.maxWith(comparator: Comparator<in Byte>): Byte?
maxWithOrNull
Returns the first element having the largest value according to the provided comparator or null
if there are no elements.
fun ByteArray.maxWithOrNull( comparator: Comparator<in Byte> ): Byte?
min
fun ByteArray.min(): Byte?
minBy
fun <R : Comparable<R>> ByteArray.minBy( selector: (Byte) -> R ): Byte?
minByOrNull
Returns the first element yielding the smallest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> ByteArray.minByOrNull( selector: (Byte) -> R ): Byte?
minOf
Returns the smallest value among all values produced by selector function applied to each element in the array.
fun <R : Comparable<R>> any_array<R>.minOf( selector: (Byte) -> R ): R
minOfOrNull
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.
fun <R : Comparable<R>> any_array<R>.minOfOrNull( selector: (Byte) -> R ): R?
minOfWith
Returns the smallest value according to the provided comparator among all values produced by selector function applied to each element in the array.
fun <R> ByteArray.minOfWith( comparator: Comparator<in R>, selector: (Byte) -> R ): R
minOfWithOrNull
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.
fun <R> ByteArray.minOfWithOrNull( comparator: Comparator<in R>, selector: (Byte) -> R ): R?
minOrNull
Returns the smallest element or null
if there are no elements.
fun ByteArray.minOrNull(): Byte?
minWith
fun ByteArray.minWith(comparator: Comparator<in Byte>): Byte?
minWithOrNull
Returns the first element having the smallest value according to the provided comparator or null
if there are no elements.
fun ByteArray.minWithOrNull( comparator: Comparator<in Byte> ): Byte?
none
Returns true
if the array has no elements.
fun ByteArray.none(): Boolean
Returns true
if no elements match the given predicate.
fun ByteArray.none(predicate: (Byte) -> Boolean): Boolean
onEach
Performs the given action on each element and returns the array itself afterwards.
fun ByteArray.onEach(action: (Byte) -> Unit): ByteArray
onEachIndexed
Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.
fun ByteArray.onEachIndexed( action: (index: Int, Byte) -> Unit ): ByteArray
partition
random
Returns a random element from this array.
fun ByteArray.random(): Byte
Returns a random element from this array using the specified source of randomness.
fun ByteArray.random(random: Random): Byte
randomOrNull
Returns a random element from this array, or null
if this array is empty.
fun ByteArray.randomOrNull(): Byte?
Returns a random element from this array using the specified source of randomness, or null
if this array is empty.
fun ByteArray.randomOrNull(random: Random): Byte?
reduce
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun ByteArray.reduce( operation: (acc: Byte, Byte) -> Byte ): Byte
reduceIndexed
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.
fun ByteArray.reduceIndexed( operation: (index: Int, acc: Byte, Byte) -> Byte ): Byte
reduceIndexedOrNull
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.
fun ByteArray.reduceIndexedOrNull( operation: (index: Int, acc: Byte, Byte) -> Byte ): Byte?
reduceOrNull
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun ByteArray.reduceOrNull( operation: (acc: Byte, Byte) -> Byte ): Byte?
reduceRight
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
fun ByteArray.reduceRight( operation: (Byte, acc: Byte) -> Byte ): Byte
reduceRightIndexed
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.
fun ByteArray.reduceRightIndexed( operation: (index: Int, Byte, acc: Byte) -> Byte ): Byte
reduceRightIndexedOrNull
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.
fun ByteArray.reduceRightIndexedOrNull( operation: (index: Int, Byte, acc: Byte) -> Byte ): Byte?
reduceRightOrNull
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
fun ByteArray.reduceRightOrNull( operation: (Byte, acc: Byte) -> Byte ): Byte?
refTo
fun ByteArray.refTo(index: Int): CValuesRef<ByteVar>
reverse
Reverses elements in the array in-place.
fun ByteArray.reverse()
Reverses elements of the array in the specified range in-place.
fun ByteArray.reverse(fromIndex: Int, toIndex: Int)
reversed
Returns a list with elements in reversed order.
fun ByteArray.reversed(): List<Byte>
reversedArray
Returns an array with elements of this array in reversed order.
fun ByteArray.reversedArray(): ByteArray
runningFold
runningFoldIndexed
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.
fun <R> ByteArray.runningFoldIndexed( initial: R, operation: (index: Int, acc: R, Byte) -> R ): List<R>
runningReduce
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.
fun ByteArray.runningReduce( operation: (acc: Byte, Byte) -> Byte ): List<Byte>
runningReduceIndexed
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.
fun ByteArray.runningReduceIndexed( operation: (index: Int, acc: Byte, Byte) -> Byte ): List<Byte>
scan
scanIndexed
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.
fun <R> ByteArray.scanIndexed( initial: R, operation: (index: Int, acc: R, Byte) -> R ): List<R>
scanReduce
fun ByteArray.scanReduce( operation: (acc: Byte, Byte) -> Byte ): List<Byte>
scanReduceIndexed
fun ByteArray.scanReduceIndexed( operation: (index: Int, acc: Byte, Byte) -> Byte ): List<Byte>
setCharAt
setDoubleAt
setFloatAt
setIntAt
setLongAt
setShortAt
setUByteAt
setUIntAt
setULongAt
setUShortAt
shuffle
Randomly shuffles elements in this array in-place.
fun ByteArray.shuffle()
Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.
fun ByteArray.shuffle(random: Random)
single
Returns the single element, or throws an exception if the array is empty or has more than one element.
fun ByteArray.single(): Byte
Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.
fun ByteArray.single(predicate: (Byte) -> Boolean): Byte
singleOrNull
Returns single element, or null
if the array is empty or has more than one element.
fun ByteArray.singleOrNull(): Byte?
Returns the single element matching the given predicate, or null
if element was not found or more than one element was found.
fun ByteArray.singleOrNull( predicate: (Byte) -> Boolean ): Byte?
slice
Returns a list containing elements at indices in the specified indices range.
fun ByteArray.slice(indices: IntRange): List<Byte>
Returns a list containing elements at specified indices.
fun ByteArray.slice(indices: Iterable<Int>): List<Byte>
sliceArray
Returns an array containing elements of this array at specified indices.
fun ByteArray.sliceArray(indices: Collection<Int>): ByteArray
Returns an array containing elements at indices in the specified indices range.
fun ByteArray.sliceArray(indices: IntRange): ByteArray
sort
Sorts the array in-place according to the order specified by the given comparison function.
fun ByteArray.sort(comparison: (a: Byte, b: Byte) -> Int)
sortDescending
Sorts elements in the array in-place descending according to their natural sort order.
fun ByteArray.sortDescending()
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
fun ByteArray.sortDescending(fromIndex: Int, toIndex: Int)
sorted
Returns a list of all elements sorted according to their natural sort order.
fun ByteArray.sorted(): List<Byte>
sortedArray
Returns an array with all elements of this array sorted according to their natural sort order.
fun ByteArray.sortedArray(): ByteArray
sortedArrayDescending
Returns an array with all elements of this array sorted descending according to their natural sort order.
fun ByteArray.sortedArrayDescending(): ByteArray
sortedBy
Returns a list of all elements sorted according to natural sort order of the value returned by specified selector function.
fun <R : Comparable<R>> ByteArray.sortedBy( selector: (Byte) -> R? ): List<Byte>
sortedByDescending
Returns a list of all elements sorted descending according to natural sort order of the value returned by specified selector function.
fun <R : Comparable<R>> ByteArray.sortedByDescending( selector: (Byte) -> R? ): List<Byte>
sortedDescending
Returns a list of all elements sorted descending according to their natural sort order.
fun ByteArray.sortedDescending(): List<Byte>
sortedWith
Returns a list of all elements sorted according to the specified comparator.
fun ByteArray.sortedWith( comparator: Comparator<in Byte> ): List<Byte>
stringFromUtf8
Converts an UTF-8 array into a String. Replaces invalid input sequences with a default character.
fun ByteArray.stringFromUtf8(): String
fun ByteArray.stringFromUtf8( start: Int = 0, size: Int = this.size ): String
stringFromUtf8OrThrow
Converts an UTF-8 array into a String.
fun ByteArray.stringFromUtf8OrThrow(): String
fun ByteArray.stringFromUtf8OrThrow( start: Int = 0, size: Int = this.size ): String
subtract
Returns a set containing all elements that are contained by this array and not contained by the specified collection.
infix fun ByteArray.subtract( other: Iterable<Byte> ): Set<Byte>
sum
Returns the sum of all elements in the array.
fun ByteArray.sum(): Int
sumBy
Returns the sum of all values produced by selector function applied to each element in the array.
fun ByteArray.sumBy(selector: (Byte) -> Int): Int
sumByDouble
Returns the sum of all values produced by selector function applied to each element in the array.
fun ByteArray.sumByDouble(selector: (Byte) -> Double): Double
sumOf
Returns the sum of all values produced by selector function applied to each element in the array.
fun ByteArray.sumOf(selector: (Byte) -> Double): Double
fun ByteArray.sumOf(selector: (Byte) -> Int): Int
fun ByteArray.sumOf(selector: (Byte) -> Long): Long
fun ByteArray.sumOf(selector: (Byte) -> UInt): UInt
fun ByteArray.sumOf(selector: (Byte) -> ULong): ULong
fun ByteArray.sumOf( selector: (Byte) -> BigDecimal ): BigDecimal
fun ByteArray.sumOf( selector: (Byte) -> BigInteger ): BigInteger
take
Returns a list containing first n elements.
fun ByteArray.take(n: Int): List<Byte>
takeLast
Returns a list containing last n elements.
fun ByteArray.takeLast(n: Int): List<Byte>
takeLastWhile
Returns a list containing last elements satisfying the given predicate.
fun ByteArray.takeLastWhile( predicate: (Byte) -> Boolean ): List<Byte>
takeWhile
Returns a list containing first elements satisfying the given predicate.
fun ByteArray.takeWhile( predicate: (Byte) -> Boolean ): List<Byte>
toCollection
Appends all elements to the given destination collection.
fun <C : MutableCollection<in Byte>> ByteArray.toCollection( destination: C ): C
toCValues
fun ByteArray.toCValues(): CValues<ByteVar>
toHashSet
Returns a new HashSet of all elements.
fun ByteArray.toHashSet(): HashSet<Byte>
toKString
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(): 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.
fun ByteArray.toKString( startIndex: Int = 0, endIndex: Int = this.size, throwOnInvalidSequence: Boolean = false ): String
toList
Returns a List containing all elements.
fun ByteArray.toList(): List<Byte>
toMutableList
Returns a new MutableList filled with all elements of this array.
fun ByteArray.toMutableList(): MutableList<Byte>
toMutableSet
Returns a new MutableSet containing all distinct elements from the given array.
fun ByteArray.toMutableSet(): MutableSet<Byte>
toSet
Returns a Set of all elements.
fun ByteArray.toSet(): Set<Byte>
toSortedSet
Returns a new SortedSet of all elements.
fun ByteArray.toSortedSet(): SortedSet<Byte>
toString
Converts the contents of this byte array to a string using the specified charset.
fun ByteArray.toString(charset: Charset): String
toUByteArray
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.
fun ByteArray.toUByteArray(): UByteArray
union
Returns a set containing all distinct elements from both collections.
infix fun ByteArray.union(other: Iterable<Byte>): Set<Byte>
withIndex
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.
fun ByteArray.withIndex(): Iterable<IndexedValue<Byte>>
zip
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.
infix fun <R> any_array<R>.zip( other: Array<out R> ): List<Pair<Byte, R>>
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.
fun <R, V> ByteArray.zip( other: Array<out R>, transform: (a: Byte, b: R) -> V ): List<V>
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.
infix fun <R> ByteArray.zip( other: Iterable<R> ): List<Pair<Byte, R>>
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.
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 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.
fun <V> ByteArray.zip( other: ByteArray, transform: (a: Byte, b: Byte) -> V ): List<V>
© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte-array/index.html