CurryInfo: base-3.4.0 / Data.List.unionBy

definition: Info
 
unionBy :: (a -> a -> Bool) -> [a] -> [a] -> [a]
unionBy eq xs ys = xs ++ foldl (flip (deleteBy eq)) (nubBy eq ys) xs
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Computes the union of two lists according to the given equivalence relation
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 unionBy
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> a -> Prelude.Bool) -> [a] -> [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