  | IMapTKey, TValueRemoveAll Method  | 
 
             Removes all entries which match with the supplied predicate.
             
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.4
Syntaxvoid RemoveAll(
	IPredicate predicate
)
Sub RemoveAll ( 
	predicate As IPredicate
)
void RemoveAll(
	IPredicate^ predicate
)
abstract RemoveAll : 
        predicate : IPredicate -> unit 
Parameters
- predicate
 - Type: Hazelcast.CoreIPredicate
matching entries with this predicate will be removed from this map 
Remarks
             If this map has index, matching entries will be found via index search, otherwise they will be found by full-scan.
            
             Note that calling this method also removes all entries from callers near cache.
             
See Also