Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newIdentityHashMap (0.07 sec)

  1. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * @param <V> the value type of {@link IdentityHashMap}
         * @return a new instance of {@link IdentityHashMap}
         * @see IdentityHashMap#IdentityHashMap()
         */
        public static <K, V> IdentityHashMap<K, V> newIdentityHashMap() {
            return new IdentityHashMap<>();
        }
    
        /**
         * Creates and returns a new instance of {@link IdentityHashMap}.
         *
         * @param <K> the key type of {@link IdentityHashMap}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

       * way {@code IdentityHashMap} handles key lookups.
       *
       * @since 8.0
       */
      public static <E extends @Nullable Object> Set<E> newIdentityHashSet() {
        return Collections.newSetFromMap(Maps.<E, Boolean>newIdentityHashMap());
      }
    
      /**
       * Creates an empty {@code CopyOnWriteArraySet} instance.
       *
       * <p><b>Note:</b> if you need an immutable empty {@link Set}, use {@link Collections#emptySet}
       * instead.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
Back to top