Package: effect
Module: List
Folds over the elements of the list using the specified function, beginning with the last element of the list, using the specified initial value.
Signature
declare const reduceRight: { <Z, A>(zero: Z, f: (accumulator: Z, value: A) => Z): (self: List<A>) => Z; <Z, A>(self: List<A>, zero: Z, f: (accumulator: Z, value: A) => Z): Z; }
Since v2.0.0