module Axiom::Algebra::Intersection::Methods

Public Instance Methods

intersect(other) click to toggle source

Return the intersection between relations

@example

intersection = relation.intersect(other)

@param [Relation] other

@return [Intersection]

@api public

# File lib/axiom/algebra/intersection.rb, line 73
def intersect(other)
  Intersection.new(self, other)
end