CurryInfo: base-3.4.0 / Data.List.nubBy

definition: Info
 
nubBy                 :: (a -> a -> Bool) -> [a] -> [a]
nubBy _  []            = []
nubBy eq (x:xs)        = x : nubBy eq (filter (\y -> not (eq x y)) xs)
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Removes all duplicates in the argument list according to an
equivalence relation.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> {[]} || (_,{:}) |-> {:}}
name: Info
 nubBy
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 (a -> a -> Prelude.Bool) -> [a] -> [a]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms