Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns true
if all elements match the given predicate.
fun CharArray.all(predicate: (Char) -> Boolean): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Creates an Iterable instance that wraps the original array returning its elements when being iterated.
fun CharArray.asIterable(): Iterable<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Creates a Sequence instance that wraps the original array returning its elements when being iterated.
fun CharArray.asSequence(): Sequence<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a Map containing key-value pairs provided by transform function applied to elements of the given array.
fun <K, V> CharArray.associate(
transform: (Char) -> Pair<K, V>
): Map<K, V>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns 1st element from the collection.
operator fun CharArray.component1(): Char
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns 2nd element from the collection.
operator fun CharArray.component2(): Char
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns 3rd element from the collection.
operator fun CharArray.component3(): Char
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns 4th element from the collection.
operator fun CharArray.component4(): Char
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns 5th element from the collection.
operator fun CharArray.component5(): Char
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns true
if element is found in the array.
operator fun CharArray.contains(element: Char): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing only distinct elements from the given array.
fun CharArray.distinct(): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements except first n elements.
fun CharArray.drop(n: Int): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements except last n elements.
fun CharArray.dropLast(n: Int): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements except last elements that satisfy the given predicate.
fun CharArray.dropLastWhile(
predicate: (Char) -> Boolean
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements except first elements that satisfy the given predicate.
fun CharArray.dropWhile(
predicate: (Char) -> Boolean
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns an element at the given index or null
if the index is out of bounds of this array.
fun CharArray.elementAtOrNull(index: Int): Char?
Platform and version requirements: JVM (1.0)
Fills original array with the provided value.
fun CharArray.fill(
element: Char,
fromIndex: Int = 0,
toIndex: Int = size)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing only elements matching the given predicate.
fun CharArray.filter(
predicate: (Char) -> Boolean
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing only elements matching the given predicate.
fun CharArray.filterIndexed(
predicate: (index: Int, Char) -> Boolean
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing all elements not matching the given predicate.
fun CharArray.filterNot(
predicate: (Char) -> Boolean
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Appends all elements matching the given predicate to the given destination.
fun <C : MutableCollection<in Char>> CharArray.filterTo(
destination: C,
predicate: (Char) -> Boolean
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element matching the given predicate, or null
if no such element was found.
fun CharArray.find(predicate: (Char) -> Boolean): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the last element matching the given predicate, or null
if no such element was found.
fun CharArray.findLast(predicate: (Char) -> Boolean): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns first element.
fun CharArray.first(): Char
Returns the first element matching the given predicate.
fun CharArray.first(predicate: (Char) -> Boolean): Char
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Accumulates value starting with initial value and applying operation from left to right to current accumulator value and each element.
fun <R> CharArray.fold(
initial: R,
operation: (acc: R, Char) -> R
): R
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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.
fun <R> CharArray.foldIndexed(
initial: R,
operation: (index: Int, acc: R, Char) -> R
): R
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Accumulates value starting with initial value and applying operation from right to left to each element and current accumulator value.
fun <R> CharArray.foldRight(
initial: R,
operation: (Char, acc: R) -> R
): R
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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.
fun <R> CharArray.foldRightIndexed(
initial: R,
operation: (index: Int, Char, acc: R) -> R
): R
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Performs the given action on each element.
fun CharArray.forEach(action: (Char) -> Unit)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Performs the given action on each element, providing sequential index with the element.
fun CharArray.forEachIndexed(
action: (index: Int, Char) -> Unit)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns an element at the given index or null
if the index is out of bounds of this array.
fun CharArray.getOrNull(index: Int): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns first index of element, or -1 if the array does not contain element.
fun CharArray.indexOf(element: Char): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a set containing all elements that are contained by both this set and the specified collection.
infix fun CharArray.intersect(
other: Iterable<Char>
): Set<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns true
if the array is empty.
fun CharArray.isEmpty(): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns true
if the array is not empty.
fun CharArray.isNotEmpty(): Boolean
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the last element.
fun CharArray.last(): Char
Returns the last element matching the given predicate.
fun CharArray.last(predicate: (Char) -> Boolean): Char
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns last index of element, or -1 if the array does not contain element.
fun CharArray.lastIndexOf(element: Char): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the largest element or null
if there are no elements.
fun CharArray.max(): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element yielding the largest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> CharArray.maxBy(
selector: (Char) -> R
): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element having the largest value according to the provided comparator or null
if there are no elements.
fun CharArray.maxWith(comparator: Comparator<in Char>): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the smallest element or null
if there are no elements.
fun CharArray.min(): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element yielding the smallest value of the given function or null
if there are no elements.
fun <R : Comparable<R>> CharArray.minBy(
selector: (Char) -> R
): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the first element having the smallest value according to the provided comparator or null
if there are no elements.
fun CharArray.minWith(comparator: Comparator<in Char>): Char?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
.
fun CharArray.partition(
predicate: (Char) -> Boolean
): Pair<List<Char>, List<Char>>
Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Accumulates value starting with 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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Accumulates value starting with 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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Reverses elements in the array in-place.
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list with elements in reversed order.
fun CharArray.reversed(): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns an array with elements of this array in reversed order.
fun CharArray.reversedArray(): CharArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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?
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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
Platform and version requirements: JVM (1.0)
Sorts a range in the array in-place.
fun CharArray.sort(fromIndex: Int = 0, toIndex: Int = size)
Platform and version requirements: JS (1.1)
Sorts the array in-place according to the order specified by the given comparison function.
fun CharArray.sort(comparison: (a: Char, b: Char) -> Int)
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Sorts elements in the array in-place descending according to their natural sort order.
fun CharArray.sortDescending()
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list of all elements sorted according to their natural sort order.
fun CharArray.sorted(): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns an array with all elements of this array sorted according to their natural sort order.
fun CharArray.sortedArray(): CharArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns an array with all elements of this array sorted descending according to their natural sort order.
fun CharArray.sortedArrayDescending(): CharArray
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list of all elements sorted descending according to their natural sort order.
fun CharArray.sortedDescending(): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list of all elements sorted according to the specified comparator.
fun CharArray.sortedWith(
comparator: Comparator<in Char>
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the sum of all values produced by selector function applied to each element in the array.
fun CharArray.sumBy(selector: (Char) -> Int): Int
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns the sum of all values produced by selector function applied to each element in the array.
fun CharArray.sumByDouble(selector: (Char) -> Double): Double
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing first n elements.
fun CharArray.take(n: Int): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing last n elements.
fun CharArray.takeLast(n: Int): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing last elements satisfying the given predicate.
fun CharArray.takeLastWhile(
predicate: (Char) -> Boolean
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a list containing first elements satisfying the given predicate.
fun CharArray.takeWhile(
predicate: (Char) -> Boolean
): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Appends all elements to the given destination collection.
fun <C : MutableCollection<in Char>> CharArray.toCollection(
destination: C
): C
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a HashSet of all elements.
fun CharArray.toHashSet(): HashSet<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a List containing all elements.
fun CharArray.toList(): List<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a MutableList filled with all elements of this array.
fun CharArray.toMutableList(): MutableList<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a mutable set containing all distinct elements from the given array.
fun CharArray.toMutableSet(): MutableSet<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a Set of all elements.
fun CharArray.toSet(): Set<Char>
Platform and version requirements: JVM (1.0)
Returns a SortedSet of all elements.
fun CharArray.toSortedSet(): SortedSet<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a set containing all distinct elements from both collections.
infix fun CharArray.union(other: Iterable<Char>): Set<Char>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
Returns a lazy Iterable of IndexedValue for each element of the original array.
fun CharArray.withIndex(): Iterable<IndexedValue<Char>>
Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
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>