Module: R::LogicalOperators

Included in:
Language, Matrix, RSymbol, Vector, Symbol
Defined in:
lib/R_interface/rlogical_operators.rb

Instance Method Summary collapse

Instance Method Details

#&(other_object) ⇒ Object Also known as: and





32
33
34
# File 'lib/R_interface/rlogical_operators.rb', line 32

def &(other_object)
  exec_bin_oper("`&`", other_object)
end

#|(other_object) ⇒ Object Also known as: or





42
43
44
# File 'lib/R_interface/rlogical_operators.rb', line 42

def |(other_object)
  exec_bin_oper("`|`", other_object)
end