definition:
|
sortValues :: Ord a => Values a -> [a]
sortValues = sortValuesBy (<=)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a multiset of values into a list sorted by
--- the standard term ordering. As a consequence, the multiset of values
--- is completely evaluated.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {sortValuesBy}}
|
name:
|
sortValues
|
precedence:
|
no precedence defined
|
result-values:
|
{sortValuesBy}
|
signature:
|
Prelude.Ord a => Values a -> [a]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|