Trait SharedKeyTreapMapConfig

Source
pub trait SharedKeyTreapMapConfig {
    type Key: Ord;
    type Value: Clone;
    type Weight: ConsoliableWeight;
}
Expand description

If TreapMap is indexed in the same key as the inside treap, it can be configed in a simple way.

Required Associated Types§

Source

type Key: Ord

The search key in the TreapMap.

Source

type Value: Clone

The stored value.

Source

type Weight: ConsoliableWeight

The consolidable weight.

Implementors§