- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for newCapacity (0.05 seconds)
-
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
} private void ensureCapacity(int minCapacity) { if (minCapacity > keys.length) { int newCapacity = ImmutableCollection.Builder.expandedCapacity(keys.length, minCapacity); this.keys = Arrays.copyOf(keys, newCapacity); this.values = Arrays.copyOf(values, newCapacity); } } /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 54.7K bytes - Click Count (0)