mapSecond<U> method

Tuple2<T1, U> mapSecond<U>(
  1. U f(
    1. T2
    )
)

Implementation

Tuple2<T1, U> mapSecond<U>(U Function(T2) f) => Tuple2(first, f(second));