class DDQL::InfixFloatMapOperator
Attributes
comparison[R]
op_symbol[R]
op_type[R]
Public Class Methods
new(symbol, name, op_type, comparison)
click to toggle source
Calls superclass method
# File lib/ddql/infix_float_map_operator.rb, line 5 def initialize(symbol, name, op_type, comparison) super(symbol, name, :infix, 4, false, :boolean) @op_type = op_type @comparison = comparison @op_symbol = :"op_float_map_#{op_type}_#{comparison}" end