Class: BOAST::Substraction

Inherits:
BasicBinaryOperator show all
Defined in:
lib/BOAST/Operators.rb

Class Method Summary collapse

Methods inherited from BasicBinaryOperator

to_s

Methods inherited from Operator

convert, get_vector_name

Class Method Details

.basic_usage(arg1, arg2) ⇒ Object



350
351
352
# File 'lib/BOAST/Operators.rb', line 350

def basic_usage(arg1, arg2)
  return "#{arg1} - (#{arg2})" 
end

.intr_name_ARMObject



346
347
348
# File 'lib/BOAST/Operators.rb', line 346

def intr_name_ARM
  return "vsub"
end

.intr_name_X86Object



342
343
344
# File 'lib/BOAST/Operators.rb', line 342

def intr_name_X86
  return "sub"
end

.symbolObject



338
339
340
# File 'lib/BOAST/Operators.rb', line 338

def symbol
  return "-"
end