Pudu programming language
Menu
API reference

Std.Tuple.uncurry

1 declaration

fn

uncurry: fn(A, B) -> C -> (A, B) -> C

This 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.

Back to Std.TupleSearch related declarations