Summary
Removes the item at the specified `index` by swapping the last item in this list into its place.
- Assembly
- Animancer
.dll - Namespace
- Animancer
- Containing Type
- Key
.KeyedList <T>
Syntax
public void RemoveAtSwap(int index)
Remarks
This does not maintain the order of items, but is more efficient than
Animancer.Key.KeyedList`1.RemoveAt(System.Int32)
because
it avoids the need to move every item after the target down one place.
Parameters
Name | Type | Description |
---|---|---|
index | int |
Return Value
Type | Description |
---|---|
void |