class BOAST::Different
Public Class Methods
basic_usage(arg1, arg2)
click to toggle source
# File lib/BOAST/Language/Operators.rb, line 113 def Different.basic_usage(arg1, arg2) return "#{arg1} /= #{arg2}" if lang == FORTRAN return "#{arg1} != #{arg2}" end
string(arg1, arg2, return_type)
click to toggle source
# File lib/BOAST/Language/Operators.rb, line 109 def Different.string(arg1, arg2, return_type) return basic_usage(arg1, arg2) end