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