Class: DDQL::InfixStringMapOperator

Inherits:
Operator
  • Object
show all
Defined in:
lib/ddql/infix_string_map_operator.rb

Instance Attribute Summary

Attributes inherited from Operator

#associativity, #name, #precedence, #return_type, #symbol, #type

Instance Method Summary collapse

Methods inherited from Operator

#any_type?, #boolean?, #comparison?, #complex_comparison?, #infix?, #left?, #math?, #parse, #pattern, #postfix?, #prefix?, #register, #right?, #simple_comparison?, #type?

Constructor Details

#initialize(symbol, name) ⇒ InfixStringMapOperator

Returns a new instance of InfixStringMapOperator.



3
4
5
# File 'lib/ddql/infix_string_map_operator.rb', line 3

def initialize(symbol, name)
  super(symbol, name, :infix, 4, false, :boolean)
end