List.removeAll

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

This function could cause a memory reallocation.

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

Parameters

otherArray
Type: T[]

the array of items that need to be removed

Meta