- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for fromArrayWithExpectedSize (0.07 sec)
-
guava/src/com/google/common/collect/ImmutableSet.java
* @since 3.0 */ public static <E> ImmutableSet<E> copyOf(E[] elements) { return fromArrayWithExpectedSize(elements, estimatedSizeForUnknownDuplication(elements.length)); } private static <E> ImmutableSet<E> fromArrayWithExpectedSize(E[] elements, int expectedSize) { switch (elements.length) { case 0: return of(); case 1:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0)