コード例 #1
0
ファイル: BloomFilter.java プロジェクト: antlr/codebuff
 /**
  * Returns {@code true} if the element <i>might</i> have been put in this Bloom filter, {@code
  * false} if this is <i>definitely</i> not the case.
  */
 public boolean mightContain(T object) {
   return strategy.mightContain(object, funnel, numHashFunctions, bits);
 }