Index<T>.Nest<U> Method

Returns a new index that adds a new level containing all the values in the specified index.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual IIndex Nest<U>(
	Index<U> other
)

Parameters

other  Index<U>
The other index.

Type Parameters

U
The element type of the nested index.

Return Value

IIndex
A new index with keys obtained by appending each element of other to each element of this index.

See Also