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
and(other_object)
Alias for: &
or(other_object)
Alias for: |
|(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