Applies the inverse permutation to a list.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void ApplyInverseInPlace<T>(
IList<T> list
)
Public Sub ApplyInverseInPlace(Of T) (
list As IList(Of T)
)
public:
generic<typename T>
void ApplyInverseInPlace(
IList<T>^ list
)
member ApplyInverseInPlace :
list : IList<'T> -> unit
Parameters
- list
- Type: System.Collections.GenericIListT
The list to be permuted.
Type Parameters
- T
- The type of the members of the list.
The elements of list are rearranged according to the permutation.
Reference