lean4-htt/library/init/instances.lean

30 lines
942 B
Text

/-
Copyright (c) 2016 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
-/
prelude
import init.meta.mk_dec_eq_instance init.subtype init.meta.occurrences init.sum
open tactic subtype
universe variables u v
attribute [instance]
def subtype_decidable_eq {A : Type u} {p : A → Prop} [decidable_eq A] : decidable_eq {x : A // p x} :=
by mk_dec_eq_instance
set_option trace.app_builder true
attribute [instance]
def list_decidable_eq {A : Type u} [decidable_eq A] : decidable_eq (list A) :=
by mk_dec_eq_instance
attribute [instance]
def occurrences_decidable_eq : decidable_eq occurrences :=
by mk_dec_eq_instance
attribute [instance]
def unit_decidable_eq : decidable_eq unit :=
by mk_dec_eq_instance
attribute [instance]
def sum_decidable {A : Type u} {B : Type v} [decidable_eq A] [decidable_eq B] : decidable_eq (A ⊕ B) :=
by mk_dec_eq_instance