ansible/dhall/Prelude/XML/attribute.dhall

7 lines
226 B
Text
Raw Normal View History

2024-11-26 05:55:44 +00:00
--| Builds a key-value record with a Text key and value.
let attribute
: Text → Text → { mapKey : Text, mapValue : Text }
= λ(key : Text) → λ(value : Text) → { mapKey = key, mapValue = value }
in attribute