CurryInfo: base-3.4.0 / Data.List.deleteBy

definition: Info
 
deleteBy              :: (a -> a -> Bool) -> a -> [a] -> [a]
deleteBy _  _ []       = []
deleteBy eq x (y:ys)   = if eq x y then ys else y : deleteBy eq x ys
demand: Info
 argument 3
deterministic: Info
 deterministic operation
documentation: Info
 
Deletes the first occurrence of an element in a list
according to an equivalence relation.
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,{[]}) |-> {[]} || (_,_,{:}) |-> _}
name: Info
 deleteBy
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
 yes
totally-defined: Info
 reducible on all ground data terms