Module: Axiom::Algebra::Union::Methods

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

Instance Method Summary collapse

Methods included from Axiom::Aliasable

inheritable_alias

Instance Method Details

#union(other) ⇒ Union

Return the union between relations

Examples:

union = relation.union(other)

Parameters:

Returns:



75
76
77
# File 'lib/axiom/algebra/union.rb', line 75

def union(other)
  Union.new(self, other)
end