| IHCollectionTRemoveAllTE Method |
Removes all of the elements in the specified collection from this collection.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax bool RemoveAll<TE>(
ICollection<TE> c
)
Function RemoveAll(Of TE) (
c As ICollection(Of TE)
) As Boolean
generic<typename TE>
bool RemoveAll(
ICollection<TE>^ c
)
abstract RemoveAll :
c : ICollection<'TE> -> bool
Parameters
- c
- Type: System.Collections.GenericICollectionTE
element collection to be removed
Type Parameters
- TE
- type of elements
Return Value
Type:
Booleantrue if all removed,
false otherwise.
See Also