- Add FoldRight: fold/reduce from right to left
- Useful for non-associative operations
- Comprehensive tests including comparison with Reduce
- Benchmark included
Example: FoldRight([1,2,3], 0, subtract) → 1-(2-(3-0)) = 2
Resolves Issue 20
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>