CurryInfo: base-3.3.0 / Prelude.curry

definition:
curry :: ((a, b) -> c) -> a -> b -> c
curry f a b =  f (a, b)
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Converts an uncurried function to a curried function.
failfree:
(_, _, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_) |-> _}
name:
curry
precedence:
no precedence defined
result-values:
_
signature:
((a, b) -> c) -> a -> b -> c
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms