CharArray
class CharArray
For Common, JVM, JS
An array of chars. When targeting the JVM, instances of this class are represented as char[]
.
For Native
An array of chars.
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) -> Char)
Creates a new array of the specified size, with all elements initialized to null char (`\u0000').
<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): Char
iterator
Creates an iterator over the elements of the array.
operator fun iterator(): CharIterator
Extension Properties
indices
Returns the range of valid indices for the array.
val CharArray.indices: IntRange
lastIndex
Returns the last valid index for the array.
val CharArray.lastIndex: Int
Extension Functions
all
Returns true
if all elements match the given predicate.
fun CharArray.all(predicate: (Char) -> Boolean): Boolean
any
Returns true
if array has at least one element.
fun CharArray.any(): Boolean
Returns true
if at least one element matches the given predicate.
fun CharArray.any(predicate: (Char) -> Boolean): Boolean
asIterable
Creates an Iterable instance that wraps the original array returning its elements when being iterated.
fun CharArray.asIterable(): Iterable<Char>
asSequence
Creates a Sequence instance that wraps the original array returning its elements when being iterated.
fun CharArray.asSequence(): Sequence<Char>
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> CharArray.associateBy( keySelector: (Char) -> K ): Map<K, Char>
Returns a Map containing the values provided by valueTransform and indexed by keySelector functions applied to elements of the given array.
fun <K, V> CharArray.associateBy( keySelector: (Char) -> K, valueTransform: (Char) -> 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 Char>> CharArray.associateByTo( destination: M, keySelector: (Char) -> 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>> CharArray.associateByTo( destination: M, keySelector: (Char) -> K, valueTransform: (Char) -> 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>> CharArray.associateTo( destination: M, transform: (Char) -> 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> CharArray.associateWith( valueSelector: (Char) -> V ): Map<Char, 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 Char, in V>> CharArray.associateWithTo( destination: M, valueSelector: (Char) -> V ): M
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 CharArray.binarySearch( element: Char, fromIndex: Int = 0, toIndex: Int = size ): Int
component1
Returns 1st element from the array.
operator fun CharArray.component1(): Char
component2
Returns 2nd element from the array.
operator fun CharArray.component2(): Char
component3
Returns 3rd element from the array.
operator fun CharArray.component3(): Char
component4
Returns 4th element from the array.
operator fun CharArray.component4(): Char
component5
Returns 5th element from the array.
operator fun CharArray.component5(): Char
contains
Returns true
if element is found in the array.
operator fun CharArray.contains(element: Char): Boolean
count
Returns the number of elements in this array.
fun CharArray.count(): Int
Returns the number of elements matching the given predicate.
fun CharArray.count(predicate: (Char) -> Boolean): Int
distinct
Returns a list containing only distinct elements from the given array.
fun CharArray.distinct(): List<Char>
distinctBy
Returns a list containing only elements from the given array having distinct keys returned by the given selector function.
fun <K> CharArray.distinctBy( selector: (Char) -> K ): List<Char>
drop
Returns a list containing all elements except first n elements.
fun CharArray.drop(n: Int): List<Char>
dropLast
Returns a list containing all elements except last n elements.
fun CharArray.dropLast(n: Int): List<Char>
dropLastWhile
Returns a list containing all elements except last elements that satisfy the given predicate.
fun CharArray.dropLastWhile( predicate: (Char) -> Boolean ): List<Char>
dropWhile
Returns a list containing all elements except first elements that satisfy the given predicate.
fun CharArray.dropWhile( predicate: (Char) -> Boolean ): List<Char>
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 CharArray.elementAtOrElse( index: Int, defaultValue: (Int) -> Char ): Char
elementAtOrNull
filter
Returns a list containing only elements matching the given predicate.
fun CharArray.filter( predicate: (Char) -> Boolean ): List<Char>
filterIndexed
Returns a list containing only elements matching the given predicate.
fun CharArray.filterIndexed( predicate: (index: Int, Char) -> Boolean ): List<Char>
filterIndexedTo
Appends all elements matching the given predicate to the given destination.
fun <C : MutableCollection<in Char>> CharArray.filterIndexedTo( destination: C, predicate: (index: Int, Char) -> Boolean ): C
filterNot
Returns a list containing all elements not matching the given predicate.
fun CharArray.filterNot( predicate: (Char) -> Boolean ): List<Char>
filterNotTo
Appends all elements not matching the given predicate to the given destination.
fun <C : MutableCollection<in Char>> CharArray.filterNotTo( destination: C, predicate: (Char) -> Boolean ): C
filterTo
Appends all elements matching the given predicate to the given destination.
fun <C : MutableCollection<in Char>> CharArray.filterTo( destination: C, predicate: (Char) -> Boolean ): C
find
Returns the first element matching the given predicate, or null
if no such element was found.
fun CharArray.find(predicate: (Char) -> Boolean): Char?
findLast
Returns the last element matching the given predicate, or null
if no such element was found.
fun CharArray.findLast(predicate: (Char) -> Boolean): Char?
first
Returns first element.
fun CharArray.first(): Char
Returns the first element matching the given predicate.
fun CharArray.first(predicate: (Char) -> Boolean): Char
firstOrNull
Returns the first element, or null
if the array is empty.
fun CharArray.firstOrNull(): Char?
Returns the first element matching the given predicate, or null
if element was not found.
fun CharArray.firstOrNull( predicate: (Char) -> Boolean ): Char?
flatMap
Returns a single list of all elements yielded from results of transform function being invoked on each element of original array.
fun <R> CharArray.flatMap( transform: (Char) -> 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> CharArray.flatMapIndexed( transform: (index: Int, Char) -> 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>> CharArray.flatMapIndexedTo( destination: C, transform: (index: Int, Char) -> 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>> CharArray.flatMapTo( destination: C, transform: (Char) -> Iterable<R> ): C
fold
foldIndexed
foldRight
foldRightIndexed
forEach
Performs the given action on each element.
fun CharArray.forEach(action: (Char) -> Unit)
forEachIndexed
Performs the given action on each element, providing sequential index with the element.
fun CharArray.forEachIndexed( action: (index: Int, Char) -> Unit)
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 CharArray.getOrElse( index: Int, defaultValue: (Int) -> Char ): Char
getOrNull
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> CharArray.groupBy( keySelector: (Char) -> K ): Map<K, List<Char>>
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> CharArray.groupBy( keySelector: (Char) -> K, valueTransform: (Char) -> 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<Char>>> CharArray.groupByTo( destination: M, keySelector: (Char) -> 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>>> CharArray.groupByTo( destination: M, keySelector: (Char) -> K, valueTransform: (Char) -> V ): M
indexOf
Returns first index of element, or -1 if the array does not contain element.
fun CharArray.indexOf(element: Char): Int
indexOfFirst
Returns index of the first element matching the given predicate, or -1 if the array does not contain such element.
fun CharArray.indexOfFirst(predicate: (Char) -> Boolean): Int
indexOfLast
Returns index of the last element matching the given predicate, or -1 if the array does not contain such element.
fun CharArray.indexOfLast(predicate: (Char) -> Boolean): Int
intersect
Returns a set containing all elements that are contained by both this array and the specified collection.
infix fun CharArray.intersect( other: Iterable<Char> ): Set<Char>
isEmpty
Returns true
if the array is empty.
fun CharArray.isEmpty(): Boolean
isNotEmpty
Returns true
if the array is not empty.
fun CharArray.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> CharArray.joinTo( buffer: A, separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: ((Char) -> CharSequence)? = null ): A
joinToString
Creates a string from all the elements separated using separator and using the given prefix and postfix if supplied.
fun CharArray.joinToString( separator: CharSequence = ", ", prefix: CharSequence = "", postfix: CharSequence = "", limit: Int = -1, truncated: CharSequence = "...", transform: ((Char) -> CharSequence)? = null ): String
last
Returns the last element.
fun CharArray.last(): Char
Returns the last element matching the given predicate.
fun CharArray.last(predicate: (Char) -> Boolean): Char
lastIndexOf
Returns last index of element, or -1 if the array does not contain element.
fun CharArray.lastIndexOf(element: Char): Int
lastOrNull
Returns the last element, or null
if the array is empty.
fun CharArray.lastOrNull(): Char?
Returns the last element matching the given predicate, or null
if no such element was found.
fun CharArray.lastOrNull(predicate: (Char) -> Boolean): Char?
map
Returns a list containing the results of applying the given transform function to each element in the original array.
fun <R> CharArray.map(transform: (Char) -> 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> CharArray.mapIndexed( transform: (index: Int, Char) -> 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>> CharArray.mapIndexedTo( destination: C, transform: (index: Int, Char) -> 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>> CharArray.mapTo( destination: C, transform: (Char) -> R ): C
max
fun CharArray.max(): Char?
maxBy
fun <R : Comparable<R>> CharArray.maxBy( selector: (Char) -> R ): Char?
maxByOrNull
Returns the first element yielding the largest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> CharArray.maxByOrNull( selector: (Char) -> R ): Char?
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: (Char) -> 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: (Char) -> 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> CharArray.maxOfWith( comparator: Comparator<in R>, selector: (Char) -> 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> CharArray.maxOfWithOrNull( comparator: Comparator<in R>, selector: (Char) -> R ): R?
maxOrNull
Returns the largest element or null
if there are no elements.
fun CharArray.maxOrNull(): Char?
maxWith
fun CharArray.maxWith(comparator: Comparator<in Char>): Char?
maxWithOrNull
Returns the first element having the largest value according to the provided comparator or null
if there are no elements.
fun CharArray.maxWithOrNull( comparator: Comparator<in Char> ): Char?
min
fun CharArray.min(): Char?
minBy
fun <R : Comparable<R>> CharArray.minBy( selector: (Char) -> R ): Char?
minByOrNull
Returns the first element yielding the smallest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> CharArray.minByOrNull( selector: (Char) -> R ): Char?
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: (Char) -> 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: (Char) -> 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> CharArray.minOfWith( comparator: Comparator<in R>, selector: (Char) -> 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> CharArray.minOfWithOrNull( comparator: Comparator<in R>, selector: (Char) -> R ): R?
minOrNull
Returns the smallest element or null
if there are no elements.
fun CharArray.minOrNull(): Char?
minWith
fun CharArray.minWith(comparator: Comparator<in Char>): Char?
minWithOrNull
Returns the first element having the smallest value according to the provided comparator or null
if there are no elements.
fun CharArray.minWithOrNull( comparator: Comparator<in Char> ): Char?
none
Returns true
if the array has no elements.
fun CharArray.none(): Boolean
Returns true
if no elements match the given predicate.
fun CharArray.none(predicate: (Char) -> Boolean): Boolean
onEach
Performs the given action on each element and returns the array itself afterwards.
fun CharArray.onEach(action: (Char) -> Unit): CharArray
onEachIndexed
Performs the given action on each element, providing sequential index with the element, and returns the array itself afterwards.
fun CharArray.onEachIndexed( action: (index: Int, Char) -> Unit ): CharArray
partition
random
Returns a random element from this array.
fun CharArray.random(): Char
Returns a random element from this array using the specified source of randomness.
fun CharArray.random(random: Random): Char
randomOrNull
Returns a random element from this array, or null
if this array is empty.
fun CharArray.randomOrNull(): Char?
Returns a random element from this array using the specified source of randomness, or null
if this array is empty.
fun CharArray.randomOrNull(random: Random): Char?
reduce
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun CharArray.reduce( operation: (acc: Char, Char) -> Char ): Char
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 CharArray.reduceIndexed( operation: (index: Int, acc: Char, Char) -> Char ): Char
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 CharArray.reduceIndexedOrNull( operation: (index: Int, acc: Char, Char) -> Char ): Char?
reduceOrNull
Accumulates value starting with the first element and applying operation from left to right to current accumulator value and each element.
fun CharArray.reduceOrNull( operation: (acc: Char, Char) -> Char ): Char?
reduceRight
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
fun CharArray.reduceRight( operation: (Char, acc: Char) -> Char ): Char
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 CharArray.reduceRightIndexed( operation: (index: Int, Char, acc: Char) -> Char ): Char
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 CharArray.reduceRightIndexedOrNull( operation: (index: Int, Char, acc: Char) -> Char ): Char?
reduceRightOrNull
Accumulates value starting with the last element and applying operation from right to left to each element and current accumulator value.
fun CharArray.reduceRightOrNull( operation: (Char, acc: Char) -> Char ): Char?
refTo
fun CharArray.refTo(index: Int): CValuesRef<COpaque>
reverse
Reverses elements in the array in-place.
fun CharArray.reverse()
Reverses elements of the array in the specified range in-place.
fun CharArray.reverse(fromIndex: Int, toIndex: Int)
reversed
Returns a list with elements in reversed order.
fun CharArray.reversed(): List<Char>
reversedArray
Returns an array with elements of this array in reversed order.
fun CharArray.reversedArray(): CharArray
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> CharArray.runningFoldIndexed( initial: R, operation: (index: Int, acc: R, Char) -> 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 CharArray.runningReduce( operation: (acc: Char, Char) -> Char ): List<Char>
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 CharArray.runningReduceIndexed( operation: (index: Int, acc: Char, Char) -> Char ): List<Char>
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> CharArray.scanIndexed( initial: R, operation: (index: Int, acc: R, Char) -> R ): List<R>
scanReduce
fun CharArray.scanReduce( operation: (acc: Char, Char) -> Char ): List<Char>
scanReduceIndexed
fun CharArray.scanReduceIndexed( operation: (index: Int, acc: Char, Char) -> Char ): List<Char>
shuffle
Randomly shuffles elements in this array in-place.
fun CharArray.shuffle()
Randomly shuffles elements in this array in-place using the specified random instance as the source of randomness.
fun CharArray.shuffle(random: Random)
single
Returns the single element, or throws an exception if the array is empty or has more than one element.
fun CharArray.single(): Char
Returns the single element matching the given predicate, or throws exception if there is no or more than one matching element.
fun CharArray.single(predicate: (Char) -> Boolean): Char
singleOrNull
Returns single element, or null
if the array is empty or has more than one element.
fun CharArray.singleOrNull(): Char?
Returns the single element matching the given predicate, or null
if element was not found or more than one element was found.
fun CharArray.singleOrNull( predicate: (Char) -> Boolean ): Char?
slice
Returns a list containing elements at indices in the specified indices range.
fun CharArray.slice(indices: IntRange): List<Char>
Returns a list containing elements at specified indices.
fun CharArray.slice(indices: Iterable<Int>): List<Char>
sliceArray
Returns an array containing elements of this array at specified indices.
fun CharArray.sliceArray(indices: Collection<Int>): CharArray
Returns an array containing elements at indices in the specified indices range.
fun CharArray.sliceArray(indices: IntRange): CharArray
sort
Sorts the array in-place according to the order specified by the given comparison function.
fun CharArray.sort(comparison: (a: Char, b: Char) -> Int)
sortDescending
Sorts elements in the array in-place descending according to their natural sort order.
fun CharArray.sortDescending()
Sorts elements of the array in the specified range in-place. The elements are sorted descending according to their natural sort order.
fun CharArray.sortDescending(fromIndex: Int, toIndex: Int)
sorted
Returns a list of all elements sorted according to their natural sort order.
fun CharArray.sorted(): List<Char>
sortedArray
Returns an array with all elements of this array sorted according to their natural sort order.
fun CharArray.sortedArray(): CharArray
sortedArrayDescending
Returns an array with all elements of this array sorted descending according to their natural sort order.
fun CharArray.sortedArrayDescending(): CharArray
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>> CharArray.sortedBy( selector: (Char) -> R? ): List<Char>
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>> CharArray.sortedByDescending( selector: (Char) -> R? ): List<Char>
sortedDescending
Returns a list of all elements sorted descending according to their natural sort order.
fun CharArray.sortedDescending(): List<Char>
sortedWith
Returns a list of all elements sorted according to the specified comparator.
fun CharArray.sortedWith( comparator: Comparator<in Char> ): List<Char>
subtract
Returns a set containing all elements that are contained by this array and not contained by the specified collection.
infix fun CharArray.subtract( other: Iterable<Char> ): Set<Char>
sumBy
Returns the sum of all values produced by selector function applied to each element in the array.
fun CharArray.sumBy(selector: (Char) -> Int): Int
sumByDouble
Returns the sum of all values produced by selector function applied to each element in the array.
fun CharArray.sumByDouble(selector: (Char) -> Double): Double
sumOf
Returns the sum of all values produced by selector function applied to each element in the array.
fun CharArray.sumOf(selector: (Char) -> Double): Double
fun CharArray.sumOf(selector: (Char) -> Int): Int
fun CharArray.sumOf(selector: (Char) -> Long): Long
fun CharArray.sumOf(selector: (Char) -> UInt): UInt
fun CharArray.sumOf(selector: (Char) -> ULong): ULong
fun CharArray.sumOf( selector: (Char) -> BigDecimal ): BigDecimal
fun CharArray.sumOf( selector: (Char) -> BigInteger ): BigInteger
take
Returns a list containing first n elements.
fun CharArray.take(n: Int): List<Char>
takeLast
Returns a list containing last n elements.
fun CharArray.takeLast(n: Int): List<Char>
takeLastWhile
Returns a list containing last elements satisfying the given predicate.
fun CharArray.takeLastWhile( predicate: (Char) -> Boolean ): List<Char>
takeWhile
Returns a list containing first elements satisfying the given predicate.
fun CharArray.takeWhile( predicate: (Char) -> Boolean ): List<Char>
toCollection
Appends all elements to the given destination collection.
fun <C : MutableCollection<in Char>> CharArray.toCollection( destination: C ): C
toHashSet
Returns a new HashSet of all elements.
fun CharArray.toHashSet(): HashSet<Char>
toList
Returns a List containing all elements.
fun CharArray.toList(): List<Char>
toMutableList
Returns a new MutableList filled with all elements of this array.
fun CharArray.toMutableList(): MutableList<Char>
toMutableSet
Returns a new MutableSet containing all distinct elements from the given array.
fun CharArray.toMutableSet(): MutableSet<Char>
toSet
Returns a Set of all elements.
fun CharArray.toSet(): Set<Char>
toSortedSet
Returns a new SortedSet of all elements.
fun CharArray.toSortedSet(): SortedSet<Char>
union
Returns a set containing all distinct elements from both collections.
infix fun CharArray.union(other: Iterable<Char>): Set<Char>
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 CharArray.withIndex(): Iterable<IndexedValue<Char>>
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<Char, 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> CharArray.zip( other: Array<out R>, transform: (a: Char, 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> CharArray.zip( other: Iterable<R> ): List<Pair<Char, 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> CharArray.zip( other: Iterable<R>, transform: (a: Char, 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> CharArray.zip( other: CharArray, transform: (a: Char, b: Char) -> 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/-char-array/index.html