Module: Axiom::Algebra::Difference::Methods

Extended by:
Axiom::Aliasable
Defined in:
lib/axiom/algebra/difference.rb

Instance Method Summary collapse

Methods included from Axiom::Aliasable

inheritable_alias

Instance Method Details

#difference(other) ⇒ Difference

Return the difference between relations

Examples:

difference = relation.difference(other)

Parameters:

Returns:



79
80
81
# File 'lib/axiom/algebra/difference.rb', line 79

def difference(other)
  Difference.new(self, other)
end