LinkedList.insert

Inserts a node after the position of last-read-node, i.e, to insert at position from where next item is to be read

To insert at beginning, call resetRead before inserting For inserting more than one nodes, use LinkedList.insert([...])

  1. void insert(T node)
    class LinkedList(T)
    void
    insert
    ()
  2. void insert(T[] nodes)

Meta