(reducer, initialReduction, context)
| 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)); |