foldRight<C> method

  1. @override
C foldRight<C>(
  1. C b,
  2. C f(
    1. C acc,
    2. T2 a
    )
)
override

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

Same as foldLeft.

Implementation

@override
C foldRight<C>(C b, C Function(C acc, T2 a) f) => f(b, _value2);