* If the array is not grouped, groups it as `groupBy` does; otherwise, groups the elements inside each current * group. This allows for top-down recursive grouping which may be easier than bottom-up grouping.
(key: ArrayFunc<LowestKey<T>, U>, comparator?: ArrayComparator<U>)
| 86 | * group. This allows for top-down recursive grouping which may be easier than bottom-up grouping. |
| 87 | */ |
| 88 | groupIn<U>(key: ArrayFunc<LowestKey<T>, U>, comparator?: ArrayComparator<U>): DataArray<Ingrouped<U, T>>; |
| 89 | |
| 90 | /** |
| 91 | * Return distinct entries. If a key is provided, then rows with distinct keys are returned. |
no outgoing calls
no test coverage detected