LinkedList.insert

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

If there is no last-read-item, the item is inserted at beginning. To do this, call resetRead before inserting

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

Return Value

Type: void

true on success, false on failure

Meta