Class: BOAST::Multiplication
- Inherits:
-
BasicBinaryOperator
- Object
- Operator
- BasicBinaryOperator
- BOAST::Multiplication
- Defined in:
- lib/BOAST/Operators.rb
Class Method Summary collapse
Methods inherited from BasicBinaryOperator
Methods inherited from Operator
Class Method Details
.basic_usage(arg1, arg2) ⇒ Object
317 318 319 |
# File 'lib/BOAST/Operators.rb', line 317 def basic_usage(arg1, arg2) return "(#{arg1}) * (#{arg2})" end |
.intr_name_ARM ⇒ Object
313 314 315 |
# File 'lib/BOAST/Operators.rb', line 313 def intr_name_ARM return "vmul" end |
.intr_name_X86 ⇒ Object
309 310 311 |
# File 'lib/BOAST/Operators.rb', line 309 def intr_name_X86 return "mul" end |
.symbol ⇒ Object
305 306 307 |
# File 'lib/BOAST/Operators.rb', line 305 def symbol return "*" end |