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, #fmap, #force_type, #helper, #name, #other_args, #post_condition, #pre_condition, #type

Instance Method Summary collapse

Methods inherited from Operator

#exec

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