module R::LogicalOperators
Public Instance Methods
&(other_object)
click to toggle source
# File lib/R_interface/rlogical_operators.rb, line 31 def &(other_object) exec_bin_oper("`&`", other_object) end
Also aliased as: and
|(other_object)
click to toggle source
# File lib/R_interface/rlogical_operators.rb, line 41 def |(other_object) exec_bin_oper("`|`", other_object) end
Also aliased as: or