Class: Range

Inherits:
Object
  • Object
show all
Defined in:
lib/latexmath/ext.rb

Instance Method Summary collapse

Instance Method Details

#each_compatObject



2
3
4
5
6
7
8
# File 'lib/latexmath/ext.rb', line 2

def each_compat
  if RUBY_ENGINE == 'opal'
    Pseudoenumerator.new(self)
  else
    each
  end
end