Macros§
- Prove two maps
map1andmap2are equal by proving that their values are equal at each key. - Create a map using syntax like
map![key1 => val1, key2 => val, ...].
Structs§
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.