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
Serializable, Serializable, (T) ⇒ Boolean, AnyRef, Any
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
    @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. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int
    Definition Classes
    BloomFilter → AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. 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

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

Inherited from Serializable

Inherited from Serializable

Inherited from (T) ⇒ Boolean

Inherited from AnyRef

Inherited from Any

Ungrouped