SetUnion

class odl.SetUnion(*sets)

Bases: Set

The union of several subsets.

The elements of this set are elements of at least one of the subsets.

This is a lazy union, i.e. there is no intelligence and the set is literally stored as the union of its subsets.

__init__(*sets)[source]

Initialize a new instance.

Parameters

set1, …, setNSet

The sets whose union should be taken. Any duplicates are ignored.

Examples

>>> reals, complexnrs = odl.RealNumbers(), odl.ComplexNumbers()
>>> union = odl.SetUnion(reals, complexnrs)