module Axiom::Algebra::Difference::Methods

Public Instance Methods

difference(other) click to toggle source

Return the difference between relations

@example

difference = relation.difference(other)

@param [Relation] other

@return [Difference]

@api public

# File lib/axiom/algebra/difference.rb, line 79
def difference(other)
  Difference.new(self, other)
end