foldRight<C> abstract method
- C b,
- C f(
- C acc,
- R b
override
Return the result of f
called with b
and the value of Right.
If this Either is Left, return b
.
Implementation
@override
C foldRight<C>(C b, C Function(C acc, R b) f);