module R::ExpBinOp
Public Instance Methods
coerce(numeric)
click to toggle source
# File lib/R_interface/ruby_extensions.rb, line 44 def coerce(numeric) [R::RubyExpression.build_bin_exp(numeric), self] end
exec_bin_oper(operator, other_object)
click to toggle source
# File lib/R_interface/ruby_extensions.rb, line 35 def exec_bin_oper(operator, other_object) R::Support.exec_function(R::Support.create_bin_expr(operator), self, other_object) end