LinkedList.remove

searches the whole list, and any element that matches with elements in the array are deleted

any function that works based on last-item-read should not be called while this is running, like in another thread...

Arguments: toRemove is the array containing the elements to delete

  1. bool remove(T toRemove, uinteger count)
  2. bool remove(T[] toRemove)
    class LinkedList(T)
    bool
    remove
    ()

Return Value

Type: bool

true on success, false if no elements matched

Throws

Exception if failed to delete an element

Meta