Class: BinaryOperator

Inherits:
Operator show all
Defined in:
lib/mdarray/operators.rb

Direct Known Subclasses

FastBinaryOperator, RubyBinaryOperator

Instance Attribute Summary

Attributes inherited from Operator

#arity, #exec_type, #force_type, #name, #post_condition, #pre_condition, #type

Instance Method Summary (collapse)

Methods inherited from Operator

#exec

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