| Package | Description |
|---|---|
| com.aliasi.test.unit.util | |
| com.aliasi.util |
Classes for general Java utilities.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SmallSetTest.testUnion(SmallSet set1,
SmallSet set2,
SmallSet result) |
void |
SmallSetTest.testUnion(SmallSet set1,
SmallSet set2,
SmallSet result) |
void |
SmallSetTest.testUnion(SmallSet set1,
SmallSet set2,
SmallSet result) |
| Modifier and Type | Method and Description |
|---|---|
static <F> SmallSet<F> |
SmallSet.create()
Return an empty small set.
|
static <F> SmallSet<F> |
SmallSet.create(F member)
Return a singleton empty set containing the specified member.
|
static <F> SmallSet<F> |
SmallSet.create(F[] members)
Return a set consisting of members drawn from the specified
array of members.
|
static <F> SmallSet<F> |
SmallSet.create(F member1,
F member2)
Return a set containing the two specified members.
|
static <F> SmallSet<F> |
SmallSet.create(F member,
Set<? extends F> set)
Return a small set containing the member and set of
members specified in the arguments.
|
static <F> SmallSet<F> |
SmallSet.create(Set<? extends F> members)
Return a small set containing the members specified in the set
argument.
|
static <F> SmallSet<F> |
SmallSet.create(Set<? extends F> set1,
Set<? extends F> set2)
Return a small set containing all of the members of
both specified sets.
|
abstract SmallSet<E> |
SmallSet.union(SmallSet<? extends E> that)
Returns the union of this set with the specified set,
without modifying either this set or the specified set.
|
| Modifier and Type | Method and Description |
|---|---|
abstract SmallSet<E> |
SmallSet.union(SmallSet<? extends E> that)
Returns the union of this set with the specified set,
without modifying either this set or the specified set.
|
Copyright © 2019 Alias-i, Inc.. All rights reserved.