Std.Tuple.uncurry
1 declaration
fn
uncurry: fn(A, B) -> C -> (A, B) -> CThis is a callable function.
What it does
A two-argument function applied to a pair, so a function written for two
arguments can be used where a pair is what there is.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
