Class: Basic101::SgnFunction
- Defined in:
- lib/basic101/sgn_function.rb
Instance Method Summary collapse
Methods inherited from Function
Instance Method Details
#call(runtime, args) ⇒ Object
11 12 13 14 15 |
# File 'lib/basic101/sgn_function.rb', line 11 def call(runtime, args) check_args args, [BasicNumeric] value = args.first.eval(runtime) value.sgn end |
#name ⇒ Object
7 8 9 |
# File 'lib/basic101/sgn_function.rb', line 7 def name 'SGN' end |