to<Y> method

Tuple<X, Y> to<Y>(
  1. Y other
)

Implementation

Tuple<X, Y> to<Y>(Y other) {
  return Tuple(this, other);
}