List.containsAll

Returns true if the specified elements in the DList are contained within the list.

  1. bool containsAll(T[] otherArray)
  2. bool containsAll(List!T otherList)
    interface List(T)
    bool
    containsAll
    @nogc

Parameters

otherList
Type: List!T

DList containing the elements to be tested

Return Value

Type: bool

true if this list contains the specified elements

Meta