Class: BinaryOperator
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Operator
#arity, #exec_type, #force_type, #name, #post_condition, #pre_condition, #type
Instance Method Summary (collapse)
-
- (BinaryOperator) initialize(name, exec_type, force_type = nil, pre_condition = nil, post_condition = nil)
constructor
?????????????????????????????.
Methods inherited from Operator
Constructor Details
- (BinaryOperator) initialize(name, exec_type, force_type = nil, pre_condition = nil, post_condition = nil)
124 125 126 127 |
# File 'lib/mdarray/operators.rb', line 124 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 |