module Axiom::Function::Connective::Disjunction::Methods

Public Instance Methods

or(other) click to toggle source

Logically OR the expression with another expression

@example

disjunction = expression.or(other)

@param [Function] other

@return [Disjunction]

@api public

# File lib/axiom/function/connective/disjunction.rb, line 65
def or(other)
  Disjunction.new(self, other)
end