pub type CommitmentMap<T> = HashMap<Commitment<T>, T>;
Expand description

A type alias for HashMap<Commitment<T>, T>

Aliased Type§

struct CommitmentMap<T> {
    base: HashMap<Commitment<T>, T, RandomState>,
}

Fields§

§base: HashMap<Commitment<T>, T, RandomState>