feat(library/data/bool): Add bxor definition

This commit is contained in:
Joe Hendrix 2015-11-29 23:06:06 -08:00 committed by Leonardo de Moura
parent 139536896c
commit 63a17a3f48

View file

@ -127,4 +127,6 @@ namespace bool
theorem eq_ff_of_bnot_eq_tt {a : bool} : bnot a = tt → a = ff :=
bool.cases_on a (λ h, rfl) (by contradiction)
definition bxor (x:bool) (y:bool) := cond x (bnot y) y
end bool