Index<T>.Remove Method

Removes the element with the specified key in the index.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Index<T> Remove(
	T value
)

Parameters

value  T
The key to remove.

Return Value

Index<T>
A new index with the element with key value removed. If the key was not found, the index is returned unmodified.

See Also