factor/extra/sorting/extras/extras-tests.factor

8 lines
215 B
Factor
Raw Normal View History

2012-08-06 13:59:40 -04:00
USING: kernel math.order sequences tools.test ;
IN: sorting.extras
{ { 0 2 1 } } [ { 10 30 20 } [ <=> ] argsort ] unit-test
{ { 2 0 1 } } [
{ "hello" "goodbye" "yo" } [ [ length ] bi@ <=> ] argsort
] unit-test