CurryInfo: base-3.3.0 / Prelude.flip

definition:
flip :: (a -> b -> c) -> b -> a -> c
flip f x y = f y x
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- `flip f` is identical to `f`, but with the order of arguments reversed.
failfree:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_) |-> _}
name:
flip
precedence:
no precedence defined
result-values:
_
signature:
(a -> b -> c) -> b -> a -> c
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms