Additional operations on Tuple (,)
Function or value | Description |
Full Usage:
Tuple2.mapItem1 f (x, y)
Parameters:
'a -> 'b
x : 'a
y : 'c
Returns: 'b * 'c
|
|
Full Usage:
Tuple2.mapItem2 f (x, y)
Parameters:
'a -> 'b
x : 'c
y : 'a
Returns: 'c * 'b
|
|