| Package | Description |
|---|---|
| it.uniroma3.mat.extendedset.wrappers.matrix |
| Modifier and Type | Method and Description |
|---|---|
PairSet<T,I> |
PairSet.clone()
See the
clone() of Object |
PairSet<T,I> |
PairSet.compacted()
Creates a new
PairSet instance with only non-empty transactions
and items. |
PairSet<T,I> |
PairSet.complemented()
Generates the complement set.
|
PairSet<T,I> |
PairSet.convert(Collection<?> c)
Converts a given
Collection instance into an instance of the
current class. |
PairSet<T,I> |
PairSet.convert(Object... e)
Converts a given integer array into an instance of the current class
|
static PairSet<Integer,Integer> |
PairSet.createFromBinaryMatrix(BinaryMatrix b)
Wraps a
BinaryMatrix instance with a PairSet instance. |
PairSet<T,I> |
PairSet.difference(Collection<? extends Pair<T,I>> other)
Generates the difference set
|
PairSet<T,I> |
PairSet.empty()
Generates an empty set
|
PairSet<T,I> |
PairSet.headSet(Pair<T,I> toElement) |
PairSet<T,I> |
PairSet.intersection(Collection<? extends Pair<T,I>> c)
Generates the intersection set
|
PairSet<T,I> |
PairSet.merged(PairSet<T,I> other)
Creates a new
PairSet instance with the union of all possible
transactions and items as result for allTransactions() and
allItems(), respectively, and the union of pairs. |
PairSet<T,I> |
PairSet.subSet(Pair<T,I> fromElement,
Pair<T,I> toElement) |
PairSet<T,I> |
PairSet.symmetricDifference(Collection<? extends Pair<T,I>> other)
Generates the symmetric difference set
|
PairSet<T,I> |
PairSet.tailSet(Pair<T,I> fromElement) |
PairSet<I,T> |
PairSet.transposed() |
PairSet<T,I> |
PairSet.union(Collection<? extends Pair<T,I>> other)
Generates the union set
|
| Modifier and Type | Method and Description |
|---|---|
List<? extends PairSet<T,I>> |
PairSet.powerSet()
Computes the power-set of the current set.
|
List<? extends PairSet<T,I>> |
PairSet.powerSet(int min,
int max)
Computes a subset of the power-set of the current set, composed by those
subsets that have cardinality between
min and
max. |
| Modifier and Type | Method and Description |
|---|---|
PairSet<T,I> |
PairSet.merged(PairSet<T,I> other)
Creates a new
PairSet instance with the union of all possible
transactions and items as result for allTransactions() and
allItems(), respectively, and the union of pairs. |
| Constructor and Description |
|---|
PairMap(PairSet<T,I> keys)
Creates an empty map
|
Copyright © 2016. All rights reserved.