Class: BOAST::Less
Constant Summary
Constants inherited from Operator
Constants included from Intrinsics
Intrinsics::CONVERSIONS, Intrinsics::INTRINSICS
Class Method Summary collapse
Methods inherited from Operator
Methods included from PrivateStateAccessor
private_boolean_state_accessor, private_state_accessor
Methods included from Intrinsics
get_conversion_path, get_vector_decl, get_vector_decl_ARM, get_vector_decl_X86, get_vector_name, intrinsics, intrinsics_by_vector_name, type_name_ARM, type_name_X86, vector_type_name
Class Method Details
.basic_usage(arg1, arg2) ⇒ Object
133 134 135 |
# File 'lib/BOAST/Language/Operators.rb', line 133 def Less.basic_usage(arg1, arg2) return "#{arg1} < #{arg2}" end |
.string(arg1, arg2, return_type) ⇒ Object
129 130 131 |
# File 'lib/BOAST/Language/Operators.rb', line 129 def Less.string(arg1, arg2, return_type) return basic_usage(arg1, arg2) end |