Module: R::LogicalOperators
- Defined in:
- lib/R_interface/rlogical_operators.rb
Instance Method Summary collapse
-
#&(other_object) ⇒ Object
(also: #and)
————————————————————————————–.
-
#|(other_object) ⇒ Object
(also: #or)
————————————————————————————–.
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 |