foldRightFirst<C> method

C foldRightFirst<C>(
  1. C b,
  2. C f(
    1. C acc,
    2. T1 a
    )
)

Return value of type C by calling f with b and the first value of the Tuple2.

Same as foldLeftFirst.

Implementation

C foldRightFirst<C>(C b, C Function(C acc, T1 a) f) => f(b, _value1);