Module: Hilbert::Parser::LimitParser

Includes:
Base
Defined in:
lib/hilbert/parser/limit_parser.rb

Class Method Summary collapse

Class Method Details

.execute(els) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/hilbert/parser/limit_parser.rb', line 5

def self.execute(els)
  var, close_to, formula = els

  LimitApi.execute(
    FormulaParser.execute(formula),
    var,
    close_to
  )
end