sort-values ( obj -- sortedseq )
Factor handbook » The language » Collections » Sequence operations » Sorting sequences

Prev:sort-keys ( obj -- sortedseq )


Vocabulary
sorting

Inputs
objan object


Outputs
sortedseqa new sorted sequence


Word description
Sorts the elements of obj (converting to an alist first if not a sequence), comparing second elements of pairs using the <=> word.

See also
compare, sort, sort-by, inv-sort-by, sort-keys

Definition

GENERIC: sort-values ( obj -- sortedseq )


Methods