Prelude-v21.1.0
The type of each key-value pair in a Map
Map
--| The type of each key-value pair in a `Map`let Entry : Type → Type → Type = λ(k : Type) → λ(v : Type) → { mapKey : k, mapValue : v }in Entry