CircularListTRemoveAt Method
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public void RemoveAt(
int index
)
Public Sub RemoveAt (
index As Integer
)
public:
virtual void RemoveAt(
int index
) sealed
abstract RemoveAt :
index : int -> unit
override RemoveAt :
index : int -> unit
- index Int32
- The zero-based index of the item to remove.
IListTRemoveAt(Int32)IListRemoveAt(Int32) Removing an item at the first or last position are O(1) operations. At other positions removal is an O(n) operation, though
the method is optimized for not moving more than n/2 elements.