* Sort the array. * @param compareFn - The comparison function
(compareFn: (a: T, b: T) => number)
| 135 | * @param compareFn - The comparison function |
| 136 | */ |
| 137 | sort(compareFn: (a: T, b: T) => number): void { |
| 138 | Utils._quickSort(this._elements, 0, this.length, compareFn); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Garbage collection, clean up all cached elements. |
no test coverage detected