add ProfilingList.RemoveAll()
This commit is contained in:
parent
5732d60047
commit
6fed3acdda
@ -1,4 +1,5 @@
|
|||||||
using System.Collections;
|
using System;
|
||||||
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
@ -60,6 +61,10 @@ namespace SemiColinGames {
|
|||||||
return items.Remove(item);
|
return items.Remove(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int RemoveAll(Predicate<T> match) {
|
||||||
|
return items.RemoveAll(match);
|
||||||
|
}
|
||||||
|
|
||||||
public void CopyTo(T[] array, int arrayIndex) {
|
public void CopyTo(T[] array, int arrayIndex) {
|
||||||
items.CopyTo(array, arrayIndex);
|
items.CopyTo(array, arrayIndex);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user