Tuple

data Tuple a b = Tuple a b
PackageType name"Plain English" name
purescript-tuplesTuple a b2-value Box
UsageValues & their Usage
Stores two unordered unnamed values of the same/different types.
Can be used to return or pass in multiple unnamed values from or into a function.
Tuple a b

API visualized

Tuple API

Records are nested tuples that can be "open".

forall r. { a :: A, b :: B, {- ... -} | r } -- open record
          { a :: A, b :: B, {- ... -}     } -- closed record
PackageType name"Plain English" name
prim{ field :: ValueType }an N-value Box
UsageValues & their Usage
Stores N unordered named values of the same/different types.
Can be used to return or pass in multiple unnamed values from or into a function.
{ field :: ValueType }