- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SequencedCollection (0.15 sec)
-
README.md
```java import org.codelibs.core.collection.CollectionsUtil; import java.util.SequencedCollection; // Enhanced collection creation List<String> list = CollectionsUtil.newArrayList(); Map<String, Object> map = CollectionsUtil.newLinkedHashMap(); Set<String> caseInsensitiveSet = new CaseInsensitiveSet<>(); // Java 21 Sequenced Collections support SequencedCollection<String> sequenced = CollectionsUtil.newLinkedHashSet();
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
*/ public static <E> SequencedCollection<E> reversed(final SequencedCollection<E> collection) { return collection.reversed(); } /** * Returns the first entry of a sequenced map. * * @param <K> the key type * @param <V> the value type * @param map the sequenced map * @return the first entry, or null if the map is empty * @since Java 21Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0)