Interval Index<T>.Append Method
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Append( | Appends the specified value to the index and returns the result. |
Append( | Appends the specified index at the end of the current index and returns the result. |
Append(Interval<T>)
Appends the specified value to the index and returns the result.
public override Index<Interval<T>> Append(
Interval<T> value
)
Parameters
Return Value
Index<Interval<T>>A new index that consists of all the elements of the current index, followed by value.
Append(Index<Interval<T>>, Boolean)
Appends the specified index at the end of the current index and returns the result.
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.