IntervalIndex<T>.Append Method

Definition

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

Overload List

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

IntervalIndex<T>.Append(Interval<T>)

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

Parameters

value  Interval<T>
The value to append.

Return Value

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

IntervalIndex<T>.Append(Index<Interval<T>>, Boolean)

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

Parameters

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

Return Value

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

See Also