├── .gitignore ├── .rspec ├── .yardopts ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── benchmarks ├── arguments_to_filter.rb ├── arguments_to_map.rb └── transducers_v_ruby_iterators.rb ├── bin └── rspec-across-supported-versions ├── dev └── irb_tools.rb ├── lib └── transducers.rb ├── spec ├── spec_helper.rb ├── transducers │ └── reducer_spec.rb └── transducers_spec.rb └── transducers.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --warnings 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/Rakefile -------------------------------------------------------------------------------- /benchmarks/arguments_to_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/benchmarks/arguments_to_filter.rb -------------------------------------------------------------------------------- /benchmarks/arguments_to_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/benchmarks/arguments_to_map.rb -------------------------------------------------------------------------------- /benchmarks/transducers_v_ruby_iterators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/benchmarks/transducers_v_ruby_iterators.rb -------------------------------------------------------------------------------- /bin/rspec-across-supported-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/bin/rspec-across-supported-versions -------------------------------------------------------------------------------- /dev/irb_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/dev/irb_tools.rb -------------------------------------------------------------------------------- /lib/transducers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/lib/transducers.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/transducers/reducer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/spec/transducers/reducer_spec.rb -------------------------------------------------------------------------------- /spec/transducers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/spec/transducers_spec.rb -------------------------------------------------------------------------------- /transducers.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cognitect-labs/transducers-ruby/HEAD/transducers.gemspec --------------------------------------------------------------------------------