class BloomFilter[T] extends (T) ⇒ Boolean with Serializable

A BloomFilter is an approximate set that sometimes gives false positives. That is, if bf(x) returns true, then it might have been added to the set. If it returns false, then it definitely has not. This is useful for caching and approximation.

Annotations
@SerialVersionUID()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BloomFilter
  2. Serializable
  3. Serializable
  4. Function1
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BloomFilter(numBuckets: Int)
  2. new BloomFilter(numBuckets: Int, numHashFunctions: Int)
  3. new BloomFilter(numBuckets: Int, numHashFunctions: Int, bits: BitSet)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &(that: BloomFilter[T]): BloomFilter[T]
  4. def &=(that: BloomFilter[T]): BloomFilter.this.type
  5. def &~(that: BloomFilter[T]): BloomFilter[T]
  6. def &~=(that: BloomFilter[T]): BloomFilter.this.type
  7. def +=(o: T): BloomFilter.this.type
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def andThen[A](g: (Boolean) ⇒ A): (T) ⇒ A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  10. def apply(o: T): Boolean
    Definition Classes
    BloomFilter → Function1
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. val bits: BitSet
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  14. def compose[A](g: (A) ⇒ T): (A) ⇒ Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  15. def contains(o: T): Boolean
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(other: Any): Boolean
    Definition Classes
    BloomFilter → AnyRef → Any
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. def hashCode(): Int
    Definition Classes
    BloomFilter → AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def load: Double

    Calculates the load of the bloom filter.

    Calculates the load of the bloom filter. If this is near 1, there will be lots of false positives.

    returns

    the fraction of bits that are set

  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. val numBuckets: Int
  26. val numHashFunctions: Int
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. def |(that: BloomFilter[T]): BloomFilter[T]
  33. def |=(that: BloomFilter[T]): BloomFilter.this.type

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Serializable

Inherited from Serializable

Inherited from (T) ⇒ Boolean

Inherited from AnyRef

Inherited from Any

Ungrouped