ansible/dhall/Prelude/Map/Entry.dhall

7 lines
166 B
Text
Raw Normal View History

2024-11-26 05:55:44 +00:00
--| 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