Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top