@@ -22811,7 +22811,7 @@ public fun <T : Any> Array<T?>.requireNoNulls(): Array<T> {
22811
22811
}
22812
22812
22813
22813
/**
22814
- * Splits the original array into pair of lists,
22814
+ * Splits the original array into a pair of lists,
22815
22815
* where *first* list contains elements for which [predicate] yielded `true`,
22816
22816
* while *second* list contains elements for which [predicate] yielded `false`.
22817
22817
*
@@ -22831,7 +22831,7 @@ public inline fun <T> Array<out T>.partition(predicate: (T) -> Boolean): Pair<Li
22831
22831
}
22832
22832
22833
22833
/**
22834
- * Splits the original array into pair of lists,
22834
+ * Splits the original array into a pair of lists,
22835
22835
* where *first* list contains elements for which [predicate] yielded `true`,
22836
22836
* while *second* list contains elements for which [predicate] yielded `false`.
22837
22837
*
@@ -22851,7 +22851,7 @@ public inline fun ByteArray.partition(predicate: (Byte) -> Boolean): Pair<List<B
22851
22851
}
22852
22852
22853
22853
/**
22854
- * Splits the original array into pair of lists,
22854
+ * Splits the original array into a pair of lists,
22855
22855
* where *first* list contains elements for which [predicate] yielded `true`,
22856
22856
* while *second* list contains elements for which [predicate] yielded `false`.
22857
22857
*
@@ -22871,7 +22871,7 @@ public inline fun ShortArray.partition(predicate: (Short) -> Boolean): Pair<List
22871
22871
}
22872
22872
22873
22873
/**
22874
- * Splits the original array into pair of lists,
22874
+ * Splits the original array into a pair of lists,
22875
22875
* where *first* list contains elements for which [predicate] yielded `true`,
22876
22876
* while *second* list contains elements for which [predicate] yielded `false`.
22877
22877
*
@@ -22891,7 +22891,7 @@ public inline fun IntArray.partition(predicate: (Int) -> Boolean): Pair<List<Int
22891
22891
}
22892
22892
22893
22893
/**
22894
- * Splits the original array into pair of lists,
22894
+ * Splits the original array into a pair of lists,
22895
22895
* where *first* list contains elements for which [predicate] yielded `true`,
22896
22896
* while *second* list contains elements for which [predicate] yielded `false`.
22897
22897
*
@@ -22911,7 +22911,7 @@ public inline fun LongArray.partition(predicate: (Long) -> Boolean): Pair<List<L
22911
22911
}
22912
22912
22913
22913
/**
22914
- * Splits the original array into pair of lists,
22914
+ * Splits the original array into a pair of lists,
22915
22915
* where *first* list contains elements for which [predicate] yielded `true`,
22916
22916
* while *second* list contains elements for which [predicate] yielded `false`.
22917
22917
*
@@ -22931,7 +22931,7 @@ public inline fun FloatArray.partition(predicate: (Float) -> Boolean): Pair<List
22931
22931
}
22932
22932
22933
22933
/**
22934
- * Splits the original array into pair of lists,
22934
+ * Splits the original array into a pair of lists,
22935
22935
* where *first* list contains elements for which [predicate] yielded `true`,
22936
22936
* while *second* list contains elements for which [predicate] yielded `false`.
22937
22937
*
@@ -22951,7 +22951,7 @@ public inline fun DoubleArray.partition(predicate: (Double) -> Boolean): Pair<Li
22951
22951
}
22952
22952
22953
22953
/**
22954
- * Splits the original array into pair of lists,
22954
+ * Splits the original array into a pair of lists,
22955
22955
* where *first* list contains elements for which [predicate] yielded `true`,
22956
22956
* while *second* list contains elements for which [predicate] yielded `false`.
22957
22957
*
@@ -22971,7 +22971,7 @@ public inline fun BooleanArray.partition(predicate: (Boolean) -> Boolean): Pair<
22971
22971
}
22972
22972
22973
22973
/**
22974
- * Splits the original array into pair of lists,
22974
+ * Splits the original array into a pair of lists,
22975
22975
* where *first* list contains elements for which [predicate] yielded `true`,
22976
22976
* while *second* list contains elements for which [predicate] yielded `false`.
22977
22977
*
0 commit comments