Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writeExternal (0.06 sec)

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

                        return index;
                    }
                    index++;
                }
            }
            return -1;
        }
    
        @Override
        public void writeExternal(final ObjectOutput s) throws IOException {
            s.writeInt(size);
            for (Entry e = header.next; e != header; e = e.next) {
                s.writeObject(e.element);
            }
        }
    
    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