join<R> abstract method

R join<R>(
  1. R mapFirst(
    1. First
    ),
  2. R mapSecond(
    1. Second
    ),
  3. R mapThird(
    1. Third
    ),
  4. R mapFourth(
    1. Fourth
    ),
  5. R mapFifth(
    1. Fifth
    ),
  6. R mapSixth(
    1. Sixth
    ),
  7. R mapSeventh(
    1. Seventh
    ),
)

Implementation

R join<R>(
  R Function(First) mapFirst,
  R Function(Second) mapSecond,
  R Function(Third) mapThird,
  R Function(Fourth) mapFourth,
  R Function(Fifth) mapFifth,
  R Function(Sixth) mapSixth,
  R Function(Seventh) mapSeventh,
);