Class RemoveRangeExtensions
A set of extension methods for collections
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
public static class RemoveRangeExtensions
Methods
TryRemoveElementsInRange<TValue>(IList<TValue>, int, int, out Exception)
Tries to remove a range of elements from the list in the given range.
Declaration
[CollectionAccess(CollectionAccessType.ModifyExistingContent)]
[MustUseReturnValue]
public static bool TryRemoveElementsInRange<TValue>(this IList<TValue> list, int index, int count, out Exception error)
Parameters
Type | Name | Description |
---|---|---|
IList<TValue> | list | The list to remove the range |
int | index | The zero-based starting index of the range of elements to remove |
int | count | The number of elements to remove. |
Exception | error | The exception raised by the implementation |
Returns
Type | Description |
---|---|
bool | True if succeed, false otherwise |
Type Parameters
Name | Description |
---|---|
TValue | The value type stored on the list |