Index<T>.Append Method

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Append(T) Appends the specified value to the index and returns the result.
Append(Index<T>, Boolean) Appends the specified index at the end of the current index and returns the result.

Append(T)

Appends the specified value to the index and returns the result.
C#
public abstract Index<T> Append(
	T value
)

Parameters

value  T
The value to append.

Return Value

Index<T>
A new index that consists of all the elements of the current index, followed by value.

Append(Index<T>, Boolean)

Appends the specified index at the end of the current index and returns the result.
C#
public abstract Index<T> Append(
	Index<T> other,
	bool verifyUniqueness
)

Parameters

other  Index<T>
The index to append.
verifyUniqueness  Boolean
Specifies whether uniqueness should be verified.

Return Value

Index<T>
A new index that consists of the values of this index followed by the values of other.

See Also