ListVector<T>.SortLists Method

Creates a new ListVector<T> with each list sorted.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
C#
public ListVector<T> SortLists(
	IComparer<T>? comparer = null
)

Parameters

comparer  IComparer<T>  (Optional)
The comparer to use for sorting. If null, the default comparer is used.

Return Value

ListVector<T>
A new ListVector<T> with sorted lists.

See Also