- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for CopyOnWriteArraySet (0.06 sec)
-
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
/** * Creates and returns a new instance of {@link CopyOnWriteArraySet}. * * @param <E> the element type of {@link CopyOnWriteArraySet} * @return a new instance of {@link CopyOnWriteArraySet} * @see CopyOnWriteArraySet#CopyOnWriteArraySet() */ public static <E> CopyOnWriteArraySet<E> newCopyOnWriteArraySet() { return new CopyOnWriteArraySet<>(); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
return new CopyOnWriteArraySet<>(); } /** * Creates a {@code CopyOnWriteArraySet} instance containing the given elements. * * @param elements the elements that the set should contain, in order * @return a new {@code CopyOnWriteArraySet} containing those elements * @since 12.0 */ @J2ktIncompatible @GwtIncompatible // CopyOnWriteArraySet
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0)