static <S extends Summary> CompactSketch<S> |
AnotB.aNotB(Sketch<S> skA,
Sketch skB) |
Returns the A-and-not-B set operation on a Tuple sketch and a Theta sketch.
|
static <S extends Summary> CompactSketch<S> |
AnotB.aNotB(Sketch<S> skA,
Sketch<S> skB) |
Returns the A-and-not-B set operation on the two given Tuple sketches.
|
CompactSketch<S> |
CompactSketch.compact() |
|
abstract CompactSketch<S> |
Sketch.compact() |
Converts this sketch to a CompactSketch on the Java heap.
|
CompactSketch<T> |
Filter.filter(Sketch<T> sketchIn) |
Filters elements on the provided Sketch
|
CompactSketch<S> |
AnotB.getResult(boolean reset) |
|
CompactSketch<S> |
Intersection.getResult() |
Gets the internal set as an unordered CompactSketch
|
CompactSketch<S> |
Union.getResult() |
Gets the result of a sequence of stateful union operations as an unordered CompactSketch
|
CompactSketch<S> |
Union.getResult(boolean reset) |
Gets the result of a sequence of stateful union operations as an unordered CompactSketch.
|
CompactSketch<S> |
Intersection.intersect(Sketch<S> tupleSketch,
Sketch thetaSketch,
S summary) |
Perform a stateless intersect set operation on a tuple sketch and a theta sketch and returns the
result as an unordered CompactSketch on the heap.
|
CompactSketch<S> |
Intersection.intersect(Sketch<S> tupleSketchA,
Sketch<S> tupleSketchB) |
Perform a stateless intersect set operation on the two given tuple sketches and returns the
result as an unordered CompactSketch on the heap.
|
CompactSketch<S> |
Union.union(Sketch<S> tupleSketch,
Sketch thetaSketch,
S summary) |
Perform a stateless, pair-wise union operation between a tupleSketch and a thetaSketch.
|
CompactSketch<S> |
Union.union(Sketch<S> tupleSketchA,
Sketch<S> tupleSketchB) |
Perform a stateless, pair-wise union operation between two tuple sketches.
|