chore: fix binders on ite_eq_left_iff (#5268)
This commit is contained in:
parent
f18ecd4493
commit
7a6fa85ed1
1 changed files with 1 additions and 1 deletions
|
|
@ -640,7 +640,7 @@ attribute [local simp] Decidable.imp_iff_left_iff
|
|||
@[simp] theorem dite_iff_right_iff {p : Prop} [Decidable p] {x : p → Prop} {y : Prop} : ((if h : p then x h else y) ↔ y) ↔ ∀ h : p, x h ↔ y := by
|
||||
split <;> simp_all
|
||||
|
||||
@[simp] theorem ite_eq_left_iff {p : Prop} [Decidable p] (x y : α) : (if p then x else y) = x ↔ ¬ p → y = x := by
|
||||
@[simp] theorem ite_eq_left_iff {p : Prop} [Decidable p] {x y : α} : (if p then x else y) = x ↔ ¬ p → y = x := by
|
||||
split <;> simp_all
|
||||
|
||||
@[simp] theorem ite_eq_right_iff {p : Prop} [Decidable p] {x y : α} : (if p then x else y) = y ↔ p → x = y := by
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue