LinkedList.insert

Inserts an array of nodes after the position of last-read-node If there is no last-read-item, the item is inserted at beginning. To do this, call resetRead before inserting Returns true on success, false on failure

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

Meta