Table of Contents

TOrderedDictionary<K, V>.Sort Method

Overloads

TOrderedDictionary<K, V>.Sort

Sorts the dictionary entries by key using the default comparer for type K.

Syntax

Unit: Bcl.Collections

procedure TOrderedDictionary<K, V>.Sort; overload;

See also

TOrderedDictionary<K, V>.Sort()

Sorts the dictionary entries using the specified comparer.

Syntax

Unit: Bcl.Collections

procedure TOrderedDictionary<K, V>.Sort(const AComparer: ); overload;

Parameters

<-> Parameter Type Description
const AComparer The comparer used to determine the order of key-value pairs.

See also