join<R> method

  1. @override
R join<R>(
  1. R mapFirst(
    1. A
    ),
  2. R mapSecond(
    1. B
    ),
  3. R mapThird(
    1. C
    ),
  4. R mapFourth(
    1. D
    ),
  5. R mapFifth(
    1. E
    ),
  6. R mapSixth(
    1. F
    ),
  7. R mapSeventh(
    1. G
    ),
  8. R mapEighth(
    1. H
    )
)
override

Implementation

@override
R join<R>(
  R Function(A) mapFirst,
  R Function(B) mapSecond,
  R Function(C) mapThird,
  R Function(D) mapFourth,
  R Function(E) mapFifth,
  R Function(F) mapSixth,
  R Function(G) mapSeventh,
  R Function(H) mapEighth,
) {
  return mapSecond(_value);
}