Union
, Intersection
and AnotB
.@Deprecated public class PairwiseSetOperations extends Object
These operations are designed for convenience and accept Sketches that may be either Heap-based or Direct.
Constructor and Description |
---|
PairwiseSetOperations()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static CompactSketch |
aNotB(Sketch skA,
Sketch skB)
Deprecated.
v2.0.0. Use
AnotB.aNotB(Sketch, Sketch) instead, which has more
complete seed handling. |
static CompactSketch |
intersect(Sketch skA,
Sketch skB)
Deprecated.
v2.0.0. Use
Intersection.intersect(Sketch, Sketch) instead, which has more
complete seed handling. |
static CompactSketch |
union(CompactSketch skA,
CompactSketch skB)
Deprecated.
v2.0.0. Please use
Union.union(Sketch, Sketch) instead, which has more
complete seed handling. |
static CompactSketch |
union(CompactSketch skA,
CompactSketch skB,
int k)
Deprecated.
v2.0.0. Please use
Union.union(Sketch, Sketch) instead, which has more
complete seed handling. |
@Deprecated public static CompactSketch intersect(Sketch skA, Sketch skB)
Intersection.intersect(Sketch, Sketch)
instead, which has more
complete seed handling.skA
- The first Sketch argument.skB
- The second Sketch argument.@Deprecated public static CompactSketch aNotB(Sketch skA, Sketch skB)
AnotB.aNotB(Sketch, Sketch)
instead, which has more
complete seed handling.skA
- The first Sketch argument.skB
- The second Sketch argument.@Deprecated public static CompactSketch union(CompactSketch skA, CompactSketch skB)
Union.union(Sketch, Sketch)
instead, which has more
complete seed handling.skA
- The first ordered, CompactSketch argument.skB
- The second ordered, CompactSketch argument@Deprecated public static CompactSketch union(CompactSketch skA, CompactSketch skB, int k)
Union.union(Sketch, Sketch)
instead, which has more
complete seed handling.skA
- The first ordered, CompactSketch argument.skB
- The second ordered, CompactSketch argumentk
- The upper bound of the number of entries to be retained by the sketchCopyright © 2015–2021 The Apache Software Foundation. All rights reserved.