<C> Tuple<C,B> | 
Tuple.left(C _newValue) | 
 Create a clone tuple with the left value replaced with the given one 
 | 
<C> Tuple<C,B> | 
Tuple.left(Function<A,C> _converter) | 
 Create a clone tuple with the left value result of the current left value applying the given converter 
 | 
static <LEFT,RIGHT> Tuple<LEFT,RIGHT> | 
Tuple.of(LEFT _left,
  RIGHT _right) | 
 Create a new Tuple form scratch with the given values 
 | 
<C> Tuple<A,C> | 
Tuple.right(C _newValue) | 
 Create a clone tuple with the right value replaced with the given one 
 | 
<C> Tuple<A,C> | 
Tuple.right(Function<B,C> _converter) | 
 Create a clone tuple with the right value result of the current right value applying the given converter 
 | 
<C,D> Tuple<C,D> | 
Tuple.with(C _left,
    D _right) | 
 Create a clone tuple with the new given values 
 | 
<C,D> Tuple<C,D> | 
Tuple.with(Function<A,C> _leftConverter,
    Function<B,D> _rightConverter) | 
 Create a clone tuple with the left and right values converted with the given converters 
 |