foldRight<C> abstract method

C foldRight<C>(
  1. C b,
  2. C f(
    1. C acc,
    2. B b
    )
)

Implementation

C foldRight<C>(C b, C Function(C acc, B b) f);