module Axiom::Algebra::Union::Methods

Public Instance Methods

union(other) click to toggle source

Return the union between relations

@example

union = relation.union(other)

@param [Relation] other

@return [Union]

@api public

# File lib/axiom/algebra/union.rb, line 75
def union(other)
  Union.new(self, other)
end