List.removeAll

Removes all the elements contained in the DList from the list (looking for their index).

This function could cause a memory reallocation.

  1. void removeAll(T[] otherArray)
  2. void removeAll(List!T otherList)
    interface List(T)
    void
    removeAll
    @nogc

Parameters

otherList
Type: List!T

the DList of items that need to be removed

Meta