Appends the specified value to the index and returns the result.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract Index<T> Append(
T value
)
Public MustOverride Function Append (
value As T
) As Index(Of T)
public:
virtual Index<T>^ Append(
T value
) abstract
abstract Append :
value : 'T -> Index<'T>
Parameters
- value
- Type: T
The value to append.
Return Value
Type:
IndexTA new index that consists of all the elements of the current index,
followed by
value.
Reference