CurryInfo: base-3.4.0 / Prelude.uncurry

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