Home
Manual
Reference
Source
F
each
F
get
F
repr
F
set
F
slice
F
sort
F
splice
map
F
chain
F
combinations
F
combinationswithrepetition
F
compress
F
dropwhile
F
enumerate
F
filter
F
filterfalse
F
group
F
islice
F
map
F
permutations
F
product
F
repeat
F
reversed
F
sorted
F
starmap
F
takewhile
F
zip
utils
F
pick
F
range
F
tee
src/sort.js
export function sort(f, array) { return Array.prototype.sort.call(array, f); }