tuple2CurriedFirst<A, B> function

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

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

Implementation

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