Class: Fabulator::Expr::DivExpr
- Defined in:
- lib/fabulator/expr/bin_expr.rb
Instance Method Summary collapse
Methods inherited from BinExpr
#expr_type, #initialize, #result_type, #run
Constructor Details
This class inherits a constructor from Fabulator::Expr::BinExpr
Instance Method Details
#calculate(a, b) ⇒ Object
157 158 159 160 |
# File 'lib/fabulator/expr/bin_expr.rb', line 157 def calculate(a,b) return nil if b.nil? || a.nil? a / b end |
#op ⇒ Object
153 154 155 |
# File 'lib/fabulator/expr/bin_expr.rb', line 153 def op :div end |