Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for unsoundlyCovariantArray (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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)
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 39.6K bytes
    - Click Count (0)
Back to Top