Class: BinaryOperator
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Operator
#arity, #exec_type, #fmap, #force_type, #helper, #name, #other_args, #post_condition, #pre_condition, #type
Instance Method Summary collapse
-
#initialize(name, exec_type, force_type = nil, pre_condition = nil, post_condition = nil) ⇒ BinaryOperator
constructor
—————————————————————————————.
Methods inherited from Operator
Constructor Details
#initialize(name, exec_type, force_type = nil, pre_condition = nil, post_condition = nil) ⇒ BinaryOperator
136 137 138 139 |
# File 'lib/mdarray/operators.rb', line 136 def initialize(name, exec_type, force_type = nil, pre_condition = nil, post_condition = nil) super(name, 2, exec_type, force_type, pre_condition, post_condition) end |