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§