human>=< ( obj1 obj2 -- >=< )
Human-friendly sorting
Prev:human<=> ( obj1 obj2 -- <=> )
Next:find-numbers ( sequence -- sequence' )


Vocabulary
sorting.human

Inputs and outputs
obj1an object
obj2an object
>=<an ordering specifier


Word description
Compares two objects using the human<=> word and inverts the result.

Definition
USING: math.order ;

IN: sorting.human

: human>=< ( obj1 obj2 -- >=< ) human<=> invert-comparison ;