ansible/dhall/Prelude/Bool/equal.dhall

7 lines
168 B
Text
Raw Normal View History

2024-11-26 05:55:44 +00:00
--| Returns `True` if both arguments are equal and returns `False` otherwise
let equal
: Bool -> Bool -> Bool
= \(x : Bool) -> \(y : Bool) -> x == y
in equal