- java.lang.Object
-
- org.apache.hadoop.hive.ql.exec.vector.expressions.CuckooSetDouble
-
public class CuckooSetDouble
extends Object
A high-performance set implementation used to support fast set membership testing,
using Cuckoo hashing. This is used to support fast tests of the form
column IN (
-
-
Method Summary
Methods
Modifier and Type |
Method and Description |
void |
insert(double x)
Insert a single value into the set.
|
void |
load(double[] a)
Insert all values in the input array into the set.
|
boolean |
lookup(double x)
Return true if and only if the value x is present in the set.
|
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Copyright © 2017 The Apache Software Foundation. All rights reserved.