CurryInfo: base-3.4.0 / Control.Search.SetFunctions.sortValuesBy

definition: Info
 
sortValuesBy :: (a -> a -> Bool) -> Values a -> [a]
sortValuesBy leq s = sortBy leq (valuesOf s)
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Transforms a multiset of values into a list sorted by a given ordering
on the values. As a consequence, the multiset of values
is completely evaluated.
In order to ensure that the result of this operation is independent of the
evaluation order, the given ordering must be a total order.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 sortValuesBy
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> a -> Prelude.Bool) -> Values a -> [a]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term