Module: R::UnaryOperators
Overview
Instance Method Summary collapse
-
#! ⇒ Object
————————————————————————————–.
-
#+@ ⇒ Object
————————————————————————————–.
-
#-@ ⇒ Object
————————————————————————————–.
Instance Method Details
#! ⇒ Object
65 66 67 68 |
# File 'lib/R_interface/runary_operators.rb', line 65 def ! # R::Support.exec_function_name("`!`", @r_interop) exec_uni_oper("`!`") end |
#+@ ⇒ Object
83 84 85 86 |
# File 'lib/R_interface/runary_operators.rb', line 83 def +@ # R::Support.exec_function_name("`+`", @r_interop) exec_uni_oper("`+`") end |
#-@ ⇒ Object
74 75 76 77 |
# File 'lib/R_interface/runary_operators.rb', line 74 def -@ # R::Support.exec_function_name("`-`", @r_interop) exec_uni_oper("`-`") end |