Module: SlowEnumeratorTools

Defined in:
lib/slow_enumerator_tools.rb,
lib/slow_enumerator_tools/merger.rb,
lib/slow_enumerator_tools/batcher.rb,
lib/slow_enumerator_tools/version.rb

Defined Under Namespace

Modules: Batcher, Merger

Constant Summary collapse

VERSION =
'1.0.0'

Class Method Summary collapse

Class Method Details

.batch(es) ⇒ Object



8
9
10
# File 'lib/slow_enumerator_tools.rb', line 8

def self.batch(es)
  SlowEnumeratorTools::Batcher.batch(es)
end

.merge(es) ⇒ Object



4
5
6
# File 'lib/slow_enumerator_tools.rb', line 4

def self.merge(es)
  SlowEnumeratorTools::Merger.merge(es)
end