module SlowEnumeratorTools
Constants
- VERSION
Public Class Methods
batch(es)
click to toggle source
# File lib/slow_enumerator_tools.rb, line 8 def self.batch(es) SlowEnumeratorTools::Batcher.batch(es) end
buffer(es, size)
click to toggle source
# File lib/slow_enumerator_tools.rb, line 12 def self.buffer(es, size) SlowEnumeratorTools::Bufferer.buffer(es, size) end
merge(es)
click to toggle source
# File lib/slow_enumerator_tools.rb, line 4 def self.merge(es) SlowEnumeratorTools::Merger.merge(es) end