Removes the element with the specified key in the index.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Index<T> Remove(
T value
)
Public Function Remove (
value As T
) As Index(Of T)
public:
Index<T>^ Remove(
T value
)
member Remove :
value : 'T -> Index<'T>
Parameters
- value
- Type: T
The key to remove.
Return Value
Type:
IndexTA new index with the element with key
value removed.
If the key was not found, the index is returned unmodified.
Reference