Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for newConcurrentHashSet (0.07 seconds)

  1. android/guava/src/com/google/common/collect/Sets.java

       * @throws NullPointerException if {@code elements} or any of its contents is null
       * @since 15.0
       */
      public static <E> Set<E> newConcurrentHashSet(Iterable<? extends E> elements) {
        Set<E> set = newConcurrentHashSet();
        Iterables.addAll(set, elements);
        return set;
      }
    
      // LinkedHashSet
    
      /**
       * Creates a <i>mutable</i>, empty {@code LinkedHashSet} instance.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 81.4K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Sets.java

       * set is serializable.
       *
       * @return a new, empty thread-safe {@code Set}
       * @since 15.0
       */
      public static <E> Set<E> newConcurrentHashSet() {
        return Platform.newConcurrentHashSet();
      }
    
      /**
       * Creates a thread-safe set backed by a hash map and containing the given elements. The set is
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 83K bytes
    - Click Count (0)
Back to Top