Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addBefore (0.03 sec)

  1. src/main/java/org/codelibs/core/collection/SLinkedList.java

         */
        public void addFirst(final E element) {
            header.next.addBefore(element);
        }
    
        /**
         * Adds an element at the end.
         *
         * @param element the object to be added
         */
        public void addLast(final E element) {
            header.addBefore(element);
        }
    
        /**
         * Inserts an object at the specified position.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top