Module: Axiom::Function::Connective::Conjunction::Methods

Extended by:
Aliasable
Included in:
Attribute::Boolean, Predicate, Proposition
Defined in:
lib/axiom/function/connective/conjunction.rb

Instance Method Summary collapse

Methods included from Aliasable

inheritable_alias

Instance Method Details

#and(other) ⇒ Conjunction

Logically AND the expression with another expression

Examples:

conjunction = expression.and(other)

Parameters:

Returns:



65
66
67
# File 'lib/axiom/function/connective/conjunction.rb', line 65

def and(other)
  Conjunction.new(self, other)
end