22 lines
818 B
Text
22 lines
818 B
Text
/-
|
||
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
|
||
Released under Apache 2.0 license as described in the file LICENSE.
|
||
Authors: Leonardo de Moura
|
||
-/
|
||
prelude
|
||
import init.data.option.basic
|
||
import init.meta.tactic
|
||
|
||
universes u v
|
||
|
||
lemma option.eq_of_eq_some {α : Type u} : Π {x y : option α}, (∀z, x = some z ↔ y = some z) → x = y
|
||
| none none h := rfl
|
||
| none (some z) h := option.no_confusion ((h z).2 rfl)
|
||
| (some z) none h := option.no_confusion ((h z).1 rfl)
|
||
| (some z) (some w) h := option.no_confusion ((h w).2 rfl) (congr_arg some)
|
||
|
||
lemma option.eq_some_of_is_some {α : Type u} : Π {o : option α} (h : option.is_some o), o = some (option.get h)
|
||
| (some x) h := rfl
|
||
|
||
lemma option.eq_none_of_is_none {α : Type u} : Π {o : option α}, o.is_none → o = none
|
||
| none h := rfl
|