Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toBloomFilter (0.25 sec)

  1. guava/src/com/google/common/hash/BloomFilter.java

       * @since 23.0
       */
      public static <T extends @Nullable Object> Collector<T, ?, BloomFilter<T>> toBloomFilter(
          Funnel<? super T> funnel, long expectedInsertions) {
        return toBloomFilter(funnel, expectedInsertions, 0.03);
      }
    
      /**
       * Returns a {@code Collector} expecting the specified number of insertions, and yielding a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top