java.lang.Object
com.telenav.kivakit.collections.set.LogicalSet<T>
com.telenav.kivakit.collections.set.operations.Union<T>
All Implemented Interfaces:
Iterable<T>, Collection<T>, Set<T>

public class Union<T> extends LogicalSet<T>
The logical union of two sets. The two sets are combined without creating any new set.

This set is not modifiable. To change the union, you must modify the underlying set(s).

Author:
jonathanl (shibo)
  • Constructor Details

    • Union

      public Union(Set<T> a, Set<T> b)
  • Method Details