module Axiom::Function::Connective::Conjunction::Methods

Public Instance Methods

and(other) click to toggle source

Logically AND the expression with another expression

@example

conjunction = expression.and(other)

@param [Function] other

@return [Conjunction]

@api public

# File lib/axiom/function/connective/conjunction.rb, line 65
def and(other)
  Conjunction.new(self, other)
end