Macros§
- assert_
maps_ equal - Prove two maps
map1andmap2are equal by proving that their values are equal at each key. - map
- Create a map using syntax like
map![key1 => val1, key2 => val, ...].
Structs§
- Map
Map<K, V>is an abstract map type for specifications. To use a “map” in compiled code, use anexectype like HashMap (TODO) that has aMap<K, V>as its specification type.