- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for getFirstEntry (1.77 sec)
-
src/main/java/org/codelibs/core/collection/SLinkedList.java
* Returns the first element. * * @return the first element */ public E getFirst() { if (isEmpty()) { throw new NoSuchElementException(); } return getFirstEntry().element; } /** * Returns the last element. * * @return the last element */ public E getLast() { if (isEmpty()) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0)