- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for firstEntry (0.04 sec)
-
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* @param map the sequenced map * @return the first entry, or null if the map is empty * @since Java 21 */ public static <K, V> Map.Entry<K, V> firstEntry(final SequencedMap<K, V> map) { return map.isEmpty() ? null : map.firstEntry(); } /** * Returns the last entry of a sequenced map. * * @param <K> the key type * @param <V> the value type
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0)