* Return a sorted array sorted by the given key; an optional comparator can be provided, which will * be used to compare the keys in leiu of the default dataview comparator.
(key: ArrayFunc<T, U>, direction?: "asc" | "desc", comparator?: ArrayComparator<U>)
| 68 | * be used to compare the keys in leiu of the default dataview comparator. |
| 69 | */ |
| 70 | sort<U>(key: ArrayFunc<T, U>, direction?: "asc" | "desc", comparator?: ArrayComparator<U>): DataArray<T>; |
| 71 | |
| 72 | /** |
| 73 | * Mutably modify the current array with an in place sort; this is less flexible than a regular sort in exchange |
no outgoing calls
no test coverage detected