Macros
- Prove two maps
map1
andmap2
are 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 anexec
type like HashMap (TODO) that has aMap<K, V>
as its specification type.