Documentation

Lean.Meta.Transform

Instances For
    def Lean.Core.transform {m : TypeType} [inst : Monad m] [inst : MonadLiftT Lean.CoreM m] [inst : MonadControlT Lean.CoreM m] (input : Lean.Expr) (pre : optParam (Lean.Exprm Lean.TransformStep) fun x => pure Lean.TransformStep.continue) (post : optParam (Lean.Exprm Lean.TransformStep) fun e => pure (Lean.TransformStep.done e)) :

    Transform the expression input using pre and post.

    • First pre is invoked with the current expression and recursion is continued according to the TransformStep result. In all cases, the expression contained in the result, if any, must be definitionally equal to the current expression.
    • After recursion, if any, post is invoked on the resulting expression.

    The term s in both pre s and post s may contain loose bound variables. So, this method is not appropriate for if one needs to apply operations (e.g., whnf, inferType) that do not handle loose bound variables. Consider using Meta.transform to avoid loose bound variables.

    This method is useful for applying transformations such as beta-reduction and delta-reduction.

    Equations
    Equations
    • One or more equations did not get rendered due to their size.
    def Lean.Meta.transform {m : TypeType} [inst : Monad m] [inst : MonadLiftT Lean.MetaM m] [inst : MonadControlT Lean.MetaM m] [inst : Lean.MonadTrace m] [inst : Lean.MonadRef m] [inst : Lean.MonadOptions m] [inst : Lean.AddMessageContext m] (input : Lean.Expr) (pre : optParam (Lean.Exprm Lean.TransformStep) fun x => pure Lean.TransformStep.continue) (post : optParam (Lean.Exprm Lean.TransformStep) fun e => pure (Lean.TransformStep.done e)) (usedLetOnly : optParam Bool false) :

    Similar to Core.transform, but terms provided to pre and post do not contain loose bound variables. So, it is safe to use any MetaM method at pre and post.

    Equations
    • One or more equations did not get rendered due to their size.
    partial def Lean.Meta.transform.visit {m : TypeType} [inst : Monad m] [inst : MonadLiftT Lean.MetaM m] [inst : MonadControlT Lean.MetaM m] (pre : optParam (Lean.Exprm Lean.TransformStep) fun x => pure Lean.TransformStep.continue) (post : optParam (Lean.Exprm Lean.TransformStep) fun e => pure (Lean.TransformStep.done e)) (usedLetOnly : optParam Bool false) :
    Equations
    • One or more equations did not get rendered due to their size.

    Unfold definitions and theorems in e that are not in the current environment, but are in biggerEnv.

    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.
    Equations
    • One or more equations did not get rendered due to their size.