tuple2CurriedSecond<A, B> function

Tuple2<A, B> Function(A a) tuple2CurriedSecond<A, B>(
  1. B b
)

Build a Tuple2(a, b) using a curried function in which the first function accepts b and the second function accepts a.

Implementation

Tuple2<A, B> Function(A a) tuple2CurriedSecond<A, B>(B b) =>
    (A a) => Tuple2(a, b);