Map

Struct Map 

Source
pub struct Map<K, V>
where K: DafnyTypeEq, V: DafnyType,
{ /* private fields */ }

Implementations§

Source§

impl<K: DafnyTypeEq, V: DafnyType> Map<K, V>

Source

pub fn new_empty() -> Map<K, V>

Source

pub fn from_array(values: &Vec<(K, V)>) -> Map<K, V>

Source

pub fn from_iterator<I>(data: I) -> Map<K, V>
where I: Iterator<Item = (K, V)>,

Source

pub fn from_hashmap_owned(values: HashMap<K, V>) -> Map<K, V>

Source

pub fn to_hashmap_owned<K2, V2>( &self, converter_k: fn(&K) -> K2, converter_v: fn(&V) -> V2, ) -> HashMap<K2, V2>
where K2: Eq + Hash, V2: Clone,

Source

pub fn cardinality_usize(&self) -> usize

Source

pub fn cardinality(&self) -> DafnyInt

Source

pub fn contains(&self, key: &K) -> bool

Source

pub fn get_or_none(&self, key: &K) -> Option<V>

Source

pub fn get(&self, key: &K) -> V

Source

pub fn merge(&self, other: &Map<K, V>) -> Map<K, V>

Source

pub fn subtract(&self, keys: &Set<K>) -> Self

Source

pub fn from_hashmap<K2, V2>( map: &HashMap<K2, V2>, converter_k: fn(&K2) -> K, converter_v: fn(&V2) -> V, ) -> Map<K, V>
where K: DafnyTypeEq, V: DafnyTypeEq, K2: Eq + Hash, V2: Clone,

Source

pub fn keys(&self) -> Set<K>

Source

pub fn update_index(&self, index: &K, value: &V) -> Self

Source

pub fn update_index_owned(&self, index: K, value: V) -> Self

Source

pub fn iter_raw(&self) -> Iter<'_, K, V>

Source

pub fn iter(&self) -> impl Iterator<Item = K> + '_

Source§

impl<K: DafnyTypeEq, V: DafnyTypeEq> Map<K, V>

Source

pub fn values(&self) -> Set<V>

Source

pub fn items(&self) -> Set<(K, V)>

Source§

impl<K: DafnyTypeEq> Map<K, DafnyInt>

Source

pub fn as_dafny_multiset(&self) -> Multiset<K>

Source§

impl<K: DafnyTypeEq, U: DafnyTypeEq> Map<K, U>

Source

pub fn coerce<V: DafnyTypeEq>( f: Rc<impl Fn(U) -> V>, ) -> Rc<impl Fn(Map<K, U>) -> Map<K, V>>

Trait Implementations§

Source§

impl<K, V> Clone for Map<K, V>
where K: DafnyTypeEq + Clone, V: DafnyType + Clone,

Source§

fn clone(&self) -> Map<K, V>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<K, V> DafnyPrint for Map<K, V>
where K: DafnyTypeEq, V: DafnyType,

Source§

fn fmt_print(&self, f: &mut Formatter<'_>, in_seq: bool) -> Result

Source§

fn is_char() -> bool

Source§

impl<K, V> Debug for Map<K, V>
where K: DafnyTypeEq, V: DafnyTypeEq,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<K: DafnyTypeEq, V: DafnyType> Default for Map<K, V>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<K: DafnyTypeEq, V: DafnyType> Hash for Map<K, V>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<K: DafnyTypeEq, V: DafnyType> NontrivialDefault for Map<K, V>

Source§

impl<K, V> PartialEq for Map<K, V>
where K: DafnyTypeEq, V: DafnyTypeEq,

Source§

fn eq(&self, other: &Map<K, V>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<K: DafnyTypeEq, V: DafnyTypeEq> Eq for Map<K, V>

Auto Trait Implementations§

§

impl<K, V> Freeze for Map<K, V>

§

impl<K, V> RefUnwindSafe for Map<K, V>

§

impl<K, V> !Send for Map<K, V>

§

impl<K, V> !Sync for Map<K, V>

§

impl<K, V> Unpin for Map<K, V>

§

impl<K, V> UnwindSafe for Map<K, V>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AnyRef for T
where T: 'static,

Source§

fn as_any_ref(&self) -> &(dyn Any + 'static)

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcast<T> for T
where T: ?Sized,

Source§

fn upcast(&self) -> Ptr<T>

Source§

impl<T> UpcastObject<T> for T
where T: ?Sized,

Source§

fn upcast(&self) -> Object<T>

Source§

impl<T> DafnyType for T
where T: Clone + DafnyPrint + 'static,

Source§

impl<T> DafnyTypeEq for T
where T: DafnyType + Hash + Eq,