22 lines
396 B
Text
22 lines
396 B
Text
structure Functor (A : Type*) :=
|
|
(fn : A → A → A) (inj : ∀ x y, fn x = fn y → x = y)
|
|
|
|
attribute [instance]
|
|
definition coe_functor_to_fn (A : Type*) : has_coe_to_fun (Functor A) :=
|
|
has_coe_to_fun.mk (A → A → A) Functor.fn
|
|
|
|
constant f : Functor nat
|
|
|
|
check f 0 1
|
|
|
|
set_option pp.coercions false
|
|
|
|
check f 0 1
|
|
|
|
set_option pp.coercions true
|
|
|
|
check f 0 1
|
|
|
|
set_option pp.all true
|
|
|
|
check f 0 1
|