Returns a new index that adds a new level containing all the
values in the specified index.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual IIndex Nest<U>(
Index<U> other
)
Public Overridable Function Nest(Of U) (
other As Index(Of U)
) As IIndex
public:
generic<typename U>
virtual IIndex^ Nest(
Index<U>^ other
)
abstract Nest :
other : Index<'U> -> IIndex
override Nest :
other : Index<'U> -> IIndex
Parameters
- other
- Type: Extreme.DataAnalysisIndexU
The other index.
Type Parameters
- U
- The element type of the nested index.
Return Value
Type:
IIndexA new index with keys obtained by appending each element
of
other to each element of this index.
Reference