TCollections.CreateSortedSet<T> Method

Overloads

CreateSortedSet<T>

Delphi
class function CreateSortedSet<T>: ISet<T>

Type Parameters

T

Returns

ISet<T>

CreateSortedSet<T>(IComparer<T>)

Delphi
class function CreateSortedSet<T>(const comparer: IComparer<T>): ISet<T>

Type Parameters

T

Parameters

comparer
IComparer<T>

Returns

ISet<T>

CreateSortedSet<T>(array of T)

Delphi
class function CreateSortedSet<T>(const values: array of T): ISet<T>

Type Parameters

T

Parameters

values
array of T

Returns

ISet<T>

CreateSortedSet<T>(IEnumerable<T>)

Delphi
class function CreateSortedSet<T>(const values: IEnumerable<T>): ISet<T>

Type Parameters

T

Parameters

values
IEnumerable<T>

Returns

ISet<T>

CreateSortedSet<T>(array of T, IComparer<T>)

Delphi
class function CreateSortedSet<T>(const values: array of T; const comparer: IComparer<T>): ISet<T>

Type Parameters

T

Parameters

values
array of T
comparer
IComparer<T>

Returns

ISet<T>

CreateSortedSet<T>(IEnumerable<T>, IComparer<T>)

Delphi
class function CreateSortedSet<T>(const values: IEnumerable<T>; const comparer: IComparer<T>): ISet<T>

Type Parameters

T

Parameters

values
IEnumerable<T>
comparer
IComparer<T>

Returns

ISet<T>