ISortedMap

Description

interface Tinman.Core.Collections.ISortedMap
<TKey>
<TValue>

Derived from

IMap<TKey, TValue>
ISortedMapConst<TKey, TValue>

Extended by

TreeMap sealed

Base interface for mutable dictionaries that store their keys in order.

Public / Methods

Remove​Maximum​Entry


public method RemoveMaximumEntry → ()

returns → MapEntry<TKey, TValue>

The removed entry.

Removes the maximum entry from this dictionary.

Remove​Maximum​Key


public method RemoveMaximumKey → ()

returns → TKey

The removed key.

Removes the maximum key from this dictionary.

Remove​Minimum​Entry


public method RemoveMinimumEntry → ()

returns → MapEntry<TKey, TValue>

The removed entry.

Removes the minimum entry from this dictionary.

Remove​Minimum​Key


public method RemoveMinimumKey → ()

returns → TKey

The removed key.

Removes the minimum key from this dictionary.