List.containsAll

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

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

Parameters

otherArray
Type: T[]

array containing the elements to be tested

Return Value

Type: bool

true if this list contains the specified elements

Meta