Index<T>.Nest<U> Method

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

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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