pub trait HashMapAdditionalSpecFns<Key, Value>: View<V = Map<Key, Value>> {
    // Required method
    fn spec_index(&self, k: Key) -> Value;
}

Required Methods§

source

spec fn spec_index(&self, k: Key) -> Value

Implementations on Foreign Types§

source§

impl<Key, Value, S> HashMapAdditionalSpecFns<Key, Value> for HashMap<Key, Value, S>

source§

open spec fn spec_index(&self, k: Key) -> Value

{ self@.index(k) }

Implementors§