Method: Bmg::Algebra#union

Defined in:
lib/bmg/algebra.rb

#union(other, options = {}) ⇒ Object



196
197
198
199
# File 'lib/bmg/algebra.rb', line 196

def union(other, options = {})
  return self if other.is_a?(Relation::Empty)
  _union self.type.union(other.type), other, options
end