Returns id e
Equations
- Lean.Meta.mkId e = do let type ← Lean.Meta.inferType e let u ← Lean.Meta.getLevel type pure (Lean.mkApp2 (Lean.mkConst `id [u]) type e)
Instances For
Given e
s.t. inferType e
is definitionally equal to expectedType
, returns
term @id expectedType e
.
Equations
Instances For
mkLetFun x v e
creates the encoding for the let_fun x := v; e
expression.
The expression x
can either be a free variable or a metavariable, and the function suitably abstracts x
in e
.
NB: x
must not be a let-bound free variable.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns a = b
.
Equations
- Lean.Meta.mkEq a b = do let aType ← Lean.Meta.inferType a let u ← Lean.Meta.getLevel aType pure (Lean.mkApp3 (Lean.mkConst `Eq [u]) aType a b)
Instances For
Returns HEq a b
.
Equations
- Lean.Meta.mkHEq a b = do let aType ← Lean.Meta.inferType a let bType ← Lean.Meta.inferType b let u ← Lean.Meta.getLevel aType pure (Lean.mkApp4 (Lean.mkConst `HEq [u]) aType a bType b)
Instances For
Returns a proof of a = a
.
Equations
- Lean.Meta.mkEqRefl a = do let aType ← Lean.Meta.inferType a let u ← Lean.Meta.getLevel aType pure (Lean.mkApp2 (Lean.mkConst `Eq.refl [u]) aType a)
Instances For
Returns a proof of HEq a a
.
Equations
- Lean.Meta.mkHEqRefl a = do let aType ← Lean.Meta.inferType a let u ← Lean.Meta.getLevel aType pure (Lean.mkApp2 (Lean.mkConst `HEq.refl [u]) aType a)
Instances For
Given hp : P
and nhp : Not P
, returns an instance of type e
.
Equations
- Lean.Meta.mkAbsurd e hp hnp = do let p ← Lean.Meta.inferType hp let u ← Lean.Meta.getLevel e pure (Lean.mkApp4 (Lean.mkConst `absurd [u]) p e hp hnp)
Instances For
Given h : a = b
, returns a proof of b = a
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Given h₁ : a = b
and h₂ : b = c
, returns a proof of a = c
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Similar to mkEqTrans
, but arguments can be none
.
none
is treated as a reflexivity proof.
Equations
Instances For
If e
is @Eq.refl α a
, returns a
.
Instances For
Given f : α → β
and h : a = b
, returns a proof of f a = f b
.
Given h : f = g
and a : α
, returns a proof of f a = g a
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Given h₁ : f = g
and h₂ : a = b
, returns a proof of f a = g b
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns the application constName xs
.
It tries to fill the implicit arguments before the last element in xs
.
Remark:
mkAppM `arbitrary #[α]
returns @arbitrary.{u} α
without synthesizing
the implicit argument occurring after α
.
Given a x : ([Decidable p] → Bool) × Nat
, mkAppM `Prod.fst #[x]
,
returns @Prod.fst ([Decidable p] → Bool) Nat x
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Similar to mkAppM
, but it allows us to specify which arguments are provided explicitly using Option
type.
Example:
Given Pure.pure {m : Type u → Type v} [Pure m] {α : Type u} (a : α) : m α
,
mkAppOptM `Pure.pure #[m, none, none, a]
returns a Pure.pure
application if the instance Pure m
can be synthesized, and the universe match.
Note that,
mkAppM `Pure.pure #[a]
fails because the only explicit argument (a : α)
is not sufficient for inferring the remaining arguments,
we would need the expected type.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Instances For
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Given a monad
and e : α
, makes pure e
.
Equations
Instances For
mkProjection s fieldName
returns an expression for accessing field fieldName
of the structure s
.
Remark: fieldName
may be a subfield of s
.
Equations
- Lean.Meta.mkArrayLit type xs = do let u ← Lean.Meta.getDecLevel type let listLit ← Lean.Meta.mkListLit type xs pure (Lean.mkApp (Lean.mkApp (Lean.mkConst `List.toArray [u]) type) listLit)
Instances For
Equations
- Lean.Meta.mkNone type = do let u ← Lean.Meta.getDecLevel type pure (Lean.mkApp (Lean.mkConst `Option.none [u]) type)
Instances For
Equations
- Lean.Meta.mkSome type value = do let u ← Lean.Meta.getDecLevel type pure (Lean.mkApp2 (Lean.mkConst `Option.some [u]) type value)
Instances For
Returns Decidable.decide p
Instances For
Returns a proof for p : Prop
using decide p
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns a < b
Instances For
Returns a <= b
Instances For
Returns Inhabited.default α
Instances For
Returns @Classical.ofNonempty α _
Instances For
Returns funext h
Instances For
Returns propext h
Instances For
Returns let_congr h₁ h₂
Instances For
Returns let_val_congr b h
Instances For
Returns let_body_congr a h
Instances For
Returns @of_eq_true p h
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns of_eq_true h
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns eq_true h
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns eq_false h
h
must have type definitionally equal to ¬ p
in the current
reducibility setting.
Instances For
Instances For
Instances For
Instances For
Instances For
Returns a + b
using a heterogeneous +
. This method assumes a
and b
have the same type.
Equations
Instances For
Returns a - b
using a heterogeneous -
. This method assumes a
and b
have the same type.
Equations
Instances For
Returns a * b
using a heterogeneous *
. This method assumes a
and b
have the same type.
Equations
Instances For
Returns a ≤ b
. This method assumes a
and b
have the same type.
Instances For
Returns a < b
. This method assumes a
and b
have the same type.
Instances For
Given h : a = b
, returns a proof for a ↔ b
.