Class: Gandiva::ExpressionBuilder::LessThan

Inherits:
BinaryOperation show all
Defined in:
lib/gandiva/expression-builder/less-than.rb

Instance Method Summary collapse

Methods inherited from BinaryOperation

#build

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