Class: BOAST::Less

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

Constant Summary

Constants inherited from Operator

Operator::DISCARD_OPTIONS

Constants included from Intrinsics

Intrinsics::CONVERSIONS, Intrinsics::INTRINSICS

Class Method Summary collapse

Methods inherited from Operator

convert, inspect

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