Documentation

Lean.PrettyPrinter.Delaborator.SubExpr

Subexpr utilities for delaborator. #

This file defines utilities for MetaM computations to traverse subexpressions of an expression in sync with the Nat "position" values that refer to them.

Equations
Equations
def Lean.PrettyPrinter.Delaborator.SubExpr.descend {α : Type} {m : TypeType} [inst : MonadWithReaderOf Lean.SubExpr m] (child : Lean.Expr) (childIdx : Nat) (x : m α) :
m α
Equations
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
def Lean.PrettyPrinter.Delaborator.SubExpr.withType {α : Type} {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] [inst : MonadLiftT Lean.MetaM m] (x : m α) :
m α
Equations
  • One or more equations did not get rendered due to their size.
partial def Lean.PrettyPrinter.Delaborator.SubExpr.withAppFnArgs {α : Type} {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] (xf : m α) (xa : αm α) :
m α
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
def Lean.PrettyPrinter.Delaborator.SubExpr.withProj {α : Type} [inst : Inhabited α] {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] (x : m α) :
m α
Equations
  • One or more equations did not get rendered due to their size.
def Lean.PrettyPrinter.Delaborator.SubExpr.withMDataExpr {α : Type} [inst : Inhabited α] {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] (x : m α) :
m α
Equations
  • One or more equations did not get rendered due to their size.
def Lean.PrettyPrinter.Delaborator.SubExpr.withLetVarType {α : Type} [inst : Inhabited α] {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] (x : m α) :
m α
Equations
  • One or more equations did not get rendered due to their size.
def Lean.PrettyPrinter.Delaborator.SubExpr.withLetValue {α : Type} [inst : Inhabited α] {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] (x : m α) :
m α
Equations
  • One or more equations did not get rendered due to their size.
def Lean.PrettyPrinter.Delaborator.SubExpr.withLetBody {α : Type} [inst : Inhabited α] {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] [inst : MonadControlT Lean.MetaM m] (x : m α) :
m α
Equations
  • One or more equations did not get rendered due to their size.
Equations
  • One or more equations did not get rendered due to their size.
def Lean.PrettyPrinter.Delaborator.SubExpr.withNaryArg {α : Type} {m : TypeType} [inst : Monad m] [inst : MonadReaderOf Lean.SubExpr m] [inst : MonadWithReaderOf Lean.SubExpr m] (argIdx : Nat) (x : m α) :
m α
Equations
  • One or more equations did not get rendered due to their size.

The positioning scheme guarantees that there will be an infinite number of extra positions which are never used by Exprs. The HoleIterator always points at the next such "hole". We use these to attach additional Elab.Info.

Equations
  • One or more equations did not get rendered due to their size.