MCPcopy
hub / github.com/immutable-js/immutable-js / reduceRight

Function reduceRight

src/CollectionImpl.js:247–256  ·  view source on GitHub ↗
(reducer, initialReduction, context)

Source from the content-addressed store, hash-verified

245 },
246
247 reduceRight(reducer, initialReduction, context) {
248 return reduce(
249 this,
250 reducer,
251 initialReduction,
252 context,
253 arguments.length < 2,
254 true
255 );
256 },
257
258 reverse() {
259 return reify(this, reverseFactory(this, true));

Callers

nothing calls this directly

Calls 1

reduceFunction · 0.90

Tested by

no test coverage detected