| IHCollectionTContainsAllTE Method |
Determines whether this collection contains all of the elements in the specified collection.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
Syntax bool ContainsAll<TE>(
ICollection<TE> c
)
Function ContainsAll(Of TE) (
c As ICollection(Of TE)
) As Boolean
generic<typename TE>
bool ContainsAll(
ICollection<TE>^ c
)
abstract ContainsAll :
c : ICollection<'TE> -> bool
Parameters
- c
- Type: System.Collections.GenericICollectionTE
The collection
Type Parameters
- TE
- type of elements
Return Value
Type:
Booleantrue if this collection contains all of the elements in the specified collection; otherwise,
false.
See Also