Class: Gandiva::ExpressionBuilder::LessThan
- Inherits:
-
BinaryOperation
- Object
- Value
- BinaryOperation
- Gandiva::ExpressionBuilder::LessThan
- Defined in:
- lib/gandiva/expression-builder/less-than.rb
Instance Method Summary collapse
-
#initialize(left, right) ⇒ LessThan
constructor
A new instance of LessThan.
Methods inherited from BinaryOperation
Methods inherited from Value
Constructor Details
#initialize(left, right) ⇒ LessThan
Returns a new instance of LessThan.
23 24 25 |
# File 'lib/gandiva/expression-builder/less-than.rb', line 23 def initialize(left, right) super("less_than", left, right) end |