module R::UnaryOperators

Public Instance Methods

!() click to toggle source
# File lib/R_interface/runary_operators.rb, line 64
def !
  # R::Support.exec_function_name("`!`", @r_interop)
  exec_uni_oper("`!`")
end
+@() click to toggle source
# File lib/R_interface/runary_operators.rb, line 82
def +@
  # R::Support.exec_function_name("`+`", @r_interop)
  exec_uni_oper("`+`")
end
-@() click to toggle source
# File lib/R_interface/runary_operators.rb, line 73
def -@
  # R::Support.exec_function_name("`-`", @r_interop)
  exec_uni_oper("`-`")
end