Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LinkedHashSet (0.15 sec)

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

       *
       * @return a new, empty {@code LinkedHashSet}
       */
      public static <E extends @Nullable Object> LinkedHashSet<E> newLinkedHashSet() {
        return new LinkedHashSet<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code LinkedHashSet} instance containing the given elements in order.
       *
       * <p><b>Note:</b> if mutability is not required and the elements are non-null, use {@link
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
Back to top