class BOAST::Not

Public Class Methods

string(arg1, arg2, return_type) click to toggle source
# File lib/BOAST/Language/Operators.rb, line 71
def Not.string(arg1, arg2, return_type)
  return " (.not. (#{arg2}))" if lang == FORTRAN
  return " !(#{arg2})"
end