Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unsoundlyCovariantArray (0.07 sec)

  1. guava/src/com/google/common/collect/CompactHashMap.java

        public <T extends @Nullable Object> T[] toArray(T[] a) {
          if (needsAllocArrays()) {
            if (a.length > 0) {
              @Nullable Object[] unsoundlyCovariantArray = a;
              unsoundlyCovariantArray[0] = null;
            }
            return a;
          }
          Map<K, V> delegate = delegateOrNull();
          return (delegate != null)
              ? delegate.keySet().toArray(a)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top