The notation3 macro, simulating Lean 3's notation. #
Syntaxes supporting notation3
#
Expands binders into nested combinators.
For example, the familiar exists is given by:
expand_binders% (p => Exists p) x y : Nat, x < y
which expands to the same expression as
∃ x y : Nat, x < y
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
Keywording indicating whether to use a left- or right-fold.
Equations
- One or more equations did not get rendered due to their size.
Instances For
notation3
argument matching extBinders
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
notation3
argument simulating a Lean 3 fold notation.
Equations
- One or more equations did not get rendered due to their size.
Instances For
notation3
argument binding a name.
Equations
- One or more equations did not get rendered due to their size.
Instances For
notation3
argument.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Expression matching #
A more complicated part of notation3
is the delaborator generator.
While notation
relies on generating app unexpanders, we instead generate a
delaborator directly so that we can control how binders are formatted (we want
to be able to know the types of binders, whether a lambda is a constant function,
and whether it is Prop
-valued, which are not things we can answer once we pass
to app unexpanders).
This stores the assignments of variables to subexpressions (and their contexts) that have been found so far during the course of the matching algorithm. We store the contexts since we need to delaborate expressions after we leave scoping constructs.
- scopeState : Option (Array (Lean.TSyntax `Std.ExtendedBinder.extBinderParenthesized))
The binders accumulated while matching a
scoped
expression. - foldState : Lean.HashMap Lean.Name (Array Lean.Term)
The dynamic state of a Matcher
.
Instances For
The initial state.
Equations
- Mathlib.Notation3.MatchState.empty = { vars := ∅, scopeState := none, foldState := ∅ }
Instances For
Evaluate f
with the given variable's value as the SubExpr
and within that subexpression's
saved context. Fails if the variable has no value.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Delaborate the given variable's value. Fails if the variable has no value.
If checkNot
is provided, then checks that the expression being delaborated is not
the given one (this is used to prevent infinite loops).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Assign a variable to the current SubExpr
, capturing the local context.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Get the accumulated array of delaborated terms for a given foldr/foldl.
Returns #[]
if nothing has been pushed yet.
Equations
- Mathlib.Notation3.MatchState.getFoldArray s name = Option.getD (Lean.HashMap.find? s.foldState name) #[]
Instances For
Get the accumulated array of delaborated terms for a given foldr/foldl.
Returns #[]
if nothing has been pushed yet.
Equations
- Mathlib.Notation3.MatchState.getBinders s = Option.getD s.scopeState #[]
Instances For
Push a delaborated term onto a foldr/foldl array.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Matcher that assigns the current SubExpr
into the match state;
if a value already exists, then it checks for equality.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Matcher for Expr.const
.
Equations
- Mathlib.Notation3.matchConst c s = do let __do_lift ← Lean.PrettyPrinter.Delaborator.SubExpr.getExpr guard (Lean.Expr.isConstOf __do_lift c = true) pure s
Instances For
Matcher for Expr.fvar
. This is only used for local notation3
.
It checks that the user name agrees, which isn't completely accurate, but probably sufficient.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Matches raw nat lits and OfNat.ofNat
expressions.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Given an identifier f
, returns
(1) the resolved constant (if it's not an fvar)
(2) a Term for a matcher for the function
(3) the arity
(4) the positions at which the function takes an explicit argument
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
A matcher that runs matchf
for the function and the matchers
for the associated
argument indices. Fails if the function doesn't have exactly arity
arguments.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Returns a Term
that represents a Matcher
for the given pattern stx
.
The boundNames
set determines which identifiers are variables in the pattern.
Fails in the OptionT
sense if it comes across something it's unable to handle.
Also returns constant names that could serve as a key for a delaborator.
For example, if it's for a function f
, then app.f
.
Matcher for processing scoped
syntax. Assumes the expression to be matched
against is in the lit
variable.
Runs smatcher
, extracts the resulting scopeId
variable, processes this value
(which must be a lambda) to produce a binder, and loops.
Equations
- Mathlib.Notation3.matchScoped lit scopeId smatcher = Mathlib.Notation3.matchScoped.go lit scopeId smatcher #[]
Instances For
Variant of matchScoped
after some number of binders
have already been captured.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Matcher for expressions produced by foldl
.
Create a Term
that represents a matcher for foldl
notation.
Reminder: ( lit ","* => foldl (x y => scopedTerm) init )
Equations
- One or more equations did not get rendered due to their size.
Instances For
Create a Term
that represents a matcher for foldr
notation.
Reminder: ( lit ","* => foldr (x y => scopedTerm) init )
Equations
- One or more equations did not get rendered due to their size.
Instances For
The notation3
command #
Create a name that we can use for the syntax
definition, using the
algorithm from notation
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
- normal: Mathlib.Notation3.BoundValueType
A normal variable, delaborate its expression.
- foldl: Mathlib.Notation3.BoundValueType
A fold variable, use the fold state (but reverse the array).
- foldr: Mathlib.Notation3.BoundValueType
A fold variable, use the fold state (do not reverse the array).
Used when processing different kinds of variables when building the final delaborator.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Interpret a prettyPrintOpt
. The default value is true
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
notation3
declares notation using Lean-3-style syntax.
Examples:
notation3 "∀ᶠ " (...) " in " f ", " r:(scoped p => Filter.eventually p f) => r
notation3 "MyList[" (x", "* => foldr (a b => MyList.cons a b) MyList.nil) "]" => x
By default notation is unable to mention any variables defined using variable
, but
local notation3
is able to use such local variables.
Use notation3 (prettyPrint := false)
to keep the command from generating a pretty printer
for the notation.
This command can be used in mathlib4 but it has an uncertain future and was created primarily for backward compatibility.
Equations
- One or more equations did not get rendered due to their size.