UNPKG
@onesy/algorithms
Version:
latest (1.0.0)
1.0.0
Algorithms
github.com/onesy-org/onesy-algorithms
onesy-org/onesy-algorithms
@onesy/algorithms
/
selectionSort.d.ts
2 lines
(1 loc)
•
99 B
TypeScript
View Raw
1
2
export
default
function
selectionSort<T =
number
>(
value
:
Array
<T>,
ascending
?:
boolean
):
Array
<T>;