foldRight<C> method
C
foldRight<
C>( - C b,
- C f(
- C acc,
- R a
)
)
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 a) f) => f(b, _value);