class BOAST::Greater
Public Class Methods
basic_usage(arg1, arg2)
click to toggle source
# File lib/BOAST/Language/Operators.rb, line 126 def Greater.basic_usage(arg1, arg2) return "#{arg1} > #{arg2}" end
string(arg1, arg2, return_type)
click to toggle source
# File lib/BOAST/Language/Operators.rb, line 122 def Greater.string(arg1, arg2, return_type) return basic_usage(arg1, arg2) end