You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The comparator is used in the same way as <CodeLinkto="Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `>`.
851
+
The comparator is used in the same way as <CodeLinkto="../Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `>`.
858
852
859
853
When two values are considered equivalent, the first encountered will be returned. Otherwise, `max` will operate independent of the order of input as long as the comparator is commutative. The default comparator `>` is commutative only when types do not differ.
860
854
@@ -889,7 +883,7 @@ Returns the minimum value in this collection. If any values are comparatively eq
The comparator is used in the same way as <CodeLinkto="Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `<`.
886
+
The comparator is used in the same way as <CodeLinkto="../Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `<`.
893
887
894
888
When two values are considered equivalent, the first encountered will be returned. Otherwise, `min` will operate independent of the order of input as long as the comparator is commutative. The default comparator `<` is commutative only when types do not differ.
895
889
@@ -950,7 +944,9 @@ If two values have the same `hashCode`, they are [not guaranteed to be equal][Ha
950
944
951
945
Returns the value found by following a path of keys or indices through nested Collections.
Unlike `Array#forEach`, if any call of `sideEffect` returns `false`, the iteration will stop. Returns the number of entries iterated (including the last iteration which returned false).
1087
1085
@@ -1127,7 +1125,9 @@ Returns a new Collection of the same type which excludes the last `amount` entri
1127
1125
1128
1126
Returns a new Collection of the same type which includes entries starting from when `predicate` first returns false.
Regardless of if this Collection can describe its size lazily (some Seqs cannot), this method will always return the correct size. E.g. it evaluates a lazy `Seq` if necessary.
1236
1252
@@ -1240,7 +1256,9 @@ If `predicate` is provided, then this returns the count of entries in the Collec
1240
1256
1241
1257
Returns a `Seq.Keyed` of counts, grouped by the return value of the `grouper` function.
The comparator is used in the same way as <CodeLinkto="Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `>`.
1248
+
The comparator is used in the same way as <CodeLinkto="../Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `>`.
1249
1249
1250
1250
When two values are considered equivalent, the first encountered will be returned. Otherwise, `max` will operate independent of the order of input as long as the comparator is commutative. The default comparator `>` is commutative only when types do not differ.
1251
1251
@@ -1280,7 +1280,7 @@ Returns the minimum value in this collection. If any values are comparatively eq
The comparator is used in the same way as <CodeLinkto="Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `<`.
1283
+
The comparator is used in the same way as <CodeLinkto="../Collection#sort()">Collection#sort</CodeLink>. If it is not provided, the default comparator is `<`.
1284
1284
1285
1285
When two values are considered equivalent, the first encountered will be returned. Otherwise, `min` will operate independent of the order of input as long as the comparator is commutative. The default comparator `<` is commutative only when types do not differ.
0 commit comments