Showing preview only (2,788K chars total). Download the full file or copy to clipboard to get everything.
Repository: leanprover/theorem_proving_in_lean4
Branch: master
Commit: 63fad08fcd5f
Files: 86
Total size: 2.6 MB
Directory structure:
gitextract_265n7ear/
├── .github/
│ └── workflows/
│ └── ci.yml
├── .gitignore
├── .gitmodules
├── LICENSE
├── README.md
├── book/
│ ├── .gitignore
│ ├── .verso/
│ │ ├── verso-xref-manifest.json
│ │ └── verso-xref.json
│ ├── Main.lean
│ ├── TPiL/
│ │ ├── AxiomsComputation.lean
│ │ ├── Conv.lean
│ │ ├── DependentTypeTheory.lean
│ │ ├── Examples.lean
│ │ ├── InductionAndRecursion.lean
│ │ ├── InductiveTypes.lean
│ │ ├── InteractingWithLean.lean
│ │ ├── Intro.lean
│ │ ├── PropositionsAndProofs.lean
│ │ ├── QuantifiersEquality.lean
│ │ ├── StructuresAndRecords.lean
│ │ ├── Tactics.lean
│ │ └── TypeClasses.lean
│ ├── TPiL.lean
│ ├── lake-manifest.json
│ ├── lakefile.toml
│ ├── lean-toolchain
│ ├── static/
│ │ ├── fonts/
│ │ │ ├── noto-sans-mono/
│ │ │ │ ├── OFL.txt
│ │ │ │ └── noto-sans-mono.css
│ │ │ ├── source-code-pro/
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── OTF/
│ │ │ │ │ ├── SourceCodePro-Black.otf
│ │ │ │ │ ├── SourceCodePro-BlackIt.otf
│ │ │ │ │ ├── SourceCodePro-Bold.otf
│ │ │ │ │ ├── SourceCodePro-BoldIt.otf
│ │ │ │ │ ├── SourceCodePro-ExtraLight.otf
│ │ │ │ │ ├── SourceCodePro-ExtraLightIt.otf
│ │ │ │ │ ├── SourceCodePro-It.otf
│ │ │ │ │ ├── SourceCodePro-Light.otf
│ │ │ │ │ ├── SourceCodePro-LightIt.otf
│ │ │ │ │ ├── SourceCodePro-Medium.otf
│ │ │ │ │ ├── SourceCodePro-MediumIt.otf
│ │ │ │ │ ├── SourceCodePro-Regular.otf
│ │ │ │ │ ├── SourceCodePro-Semibold.otf
│ │ │ │ │ └── SourceCodePro-SemiboldIt.otf
│ │ │ │ └── source-code-pro.css
│ │ │ ├── source-sans/
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── OTF/
│ │ │ │ │ ├── SourceSans3-Black.otf
│ │ │ │ │ ├── SourceSans3-BlackIt.otf
│ │ │ │ │ ├── SourceSans3-Bold.otf
│ │ │ │ │ ├── SourceSans3-BoldIt.otf
│ │ │ │ │ ├── SourceSans3-ExtraLight.otf
│ │ │ │ │ ├── SourceSans3-ExtraLightIt.otf
│ │ │ │ │ ├── SourceSans3-It.otf
│ │ │ │ │ ├── SourceSans3-Light.otf
│ │ │ │ │ ├── SourceSans3-LightIt.otf
│ │ │ │ │ ├── SourceSans3-Medium.otf
│ │ │ │ │ ├── SourceSans3-MediumIt.otf
│ │ │ │ │ ├── SourceSans3-Regular.otf
│ │ │ │ │ ├── SourceSans3-Semibold.otf
│ │ │ │ │ └── SourceSans3-SemiboldIt.otf
│ │ │ │ ├── VF/
│ │ │ │ │ ├── SourceSans3VF-Italic.otf
│ │ │ │ │ └── SourceSans3VF-Upright.otf
│ │ │ │ ├── source-sans-3.css
│ │ │ │ └── source-sans-3VF.css
│ │ │ └── source-serif/
│ │ │ ├── LICENSE.md
│ │ │ ├── OTF/
│ │ │ │ ├── SourceSerif4-Black.otf
│ │ │ │ ├── SourceSerif4-BlackIt.otf
│ │ │ │ ├── SourceSerif4-Bold.otf
│ │ │ │ ├── SourceSerif4-BoldIt.otf
│ │ │ │ ├── SourceSerif4-ExtraLight.otf
│ │ │ │ ├── SourceSerif4-ExtraLightIt.otf
│ │ │ │ ├── SourceSerif4-It.otf
│ │ │ │ ├── SourceSerif4-Light.otf
│ │ │ │ ├── SourceSerif4-LightIt.otf
│ │ │ │ ├── SourceSerif4-Regular.otf
│ │ │ │ ├── SourceSerif4-Semibold.otf
│ │ │ │ └── SourceSerif4-SemiboldIt.otf
│ │ │ └── source-serif-text.css
│ │ └── theme.css
│ └── verso-sources.json
├── examples/
│ ├── .gitignore
│ ├── Examples/
│ │ └── Basic.lean
│ ├── Examples.lean
│ ├── lake-manifest.json
│ ├── lakefile.toml
│ └── lean-toolchain
└── unixode.sty
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/ci.yml
================================================
name: build and test book content
# Controls when the action will run.
on:
push:
branches:
- master
pull_request:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# interferes with lean4-nightly authentication
persist-credentials: false
submodules: true
- name: Setup elan toolchain on this build
run: |
curl -O --location https://raw.githubusercontent.com/leanprover/elan/master/elan-init.sh
chmod u+x elan-init.sh
./elan-init.sh -y --default-toolchain none
- name: Set elan paths
run: |
echo "$HOME/.elan/bin" >> $GITHUB_PATH
- name: Install lean toolchain for examples
run: |
cd examples
lean --version
- name: Install lean toolchain for text
run: |
cd book
lean --version
- name: Cache book/.lake
uses: actions/cache@v4
with:
path: book/.lake
# The SHA is in the key to get the most recent cache possible, rather than just saving a single one for each Lean/deps version and not touching it.
key: ${{ runner.os }}-${{ hashFiles('book/lake-manifest.json') }}-${{ hashFiles('book/lean-toolchain') }}-${{ steps.shortSHA.outputs.short_sha }}
# Try to restore cache for same OS/Lean/deps, but don't get less specific, because Lake isn't always happy to get build product version mismatches
restore-keys: |
${{ runner.os }}-${{ hashFiles('book/lake-manifest.json') }}-${{ hashFiles('book/lean-toolchain') }}-
- name: Build book
run: |
pushd book
lake exe tpil --verbose
popd
- name: Save book/.lake
uses: actions/cache/save@v4
with:
path: book/.lake
# The SHA is in the key to get the most recent cache possible, rather than just saving a single one for each Lean/deps version and not touching it.
key: ${{ runner.os }}-${{ hashFiles('book/lake-manifest.json') }}-${{ hashFiles('book/lean-toolchain') }}-${{ steps.shortSHA.outputs.short_sha }}
- name: Deploy to Netlify hosting
uses: nwtgck/actions-netlify@v2.0
if: github.event_name == 'push' && github.ref_name == 'master'
with:
publish-dir: book/_out/html-multi
production-branch: master
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: |
${{ github.event_name == 'pull_request' && format('pr#{0}: {1}', github.event.number, github.event.pull_request.title) || format('ref/{0}: {1}', github.ref_name, steps.deploy-info.outputs.message) }}
alias: ${{ steps.deploy-info.outputs.alias }}
enable-commit-comment: false
enable-pull-request-comment: false
github-deployment-environment: "lean-lang.org/theorem_proving_in_lean4"
fails-without-credentials: true
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: "51300c89-2f6c-4bba-a575-8cf12e434502"
- name: GH pages deploy
uses: JamesIves/github-pages-deploy-action@4.1.5
if: github.event_name == 'push' && github.ref_name == 'master'
with:
branch: gh-pages
folder: book/_out/html-multi
================================================
FILE: .gitignore
================================================
*.olean
/_target
/leanpkg.path
out/
.vs/
.vscode/
*/_out/*
.DS_Store
================================================
FILE: .gitmodules
================================================
================================================
FILE: LICENSE
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright {yyyy} {name of copyright owner}
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: README.md
================================================
Theorem Proving in Lean 4
-----------------------
This repository contains the source code of the book _Theorem Proving
in Lean 4_ by Jeremy Avigad, Leonardo de Moura, Soonho Kong, and
Sebastian Ullrich, with contributions from the Lean Community.
To build the book, change to the `book` directory and run `lake exe tpil`.
After this, `book/_out/html-multi` contains a multi-page Web
version of the book.
================================================
FILE: book/.gitignore
================================================
/.lake
================================================
FILE: book/.verso/verso-xref-manifest.json
================================================
{"version": 0,
"sources":
{"manual":
{"updateFrequency": "manual",
"shortName": "ref",
"root": "https://lean-lang.org/doc/reference/4.26.0/",
"longName": "Lean Language Reference"}},
"outputDir": ".verso"}
================================================
FILE: book/.verso/verso-xref.json
================================================
{"manual":
{"Verso.Genre.Manual.section":
{"title": "Sections or chapters of the manual",
"description": "Sections or chapters of the manual",
"contents":
{"whitespace":
[{"id": "whitespace",
"data":
{"title": "Whitespace",
"shortTitle": null,
"sectionNum": "5.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Concrete Syntax", "shortTitle": null, "number": "2"},
{"title": "Whitespace", "shortTitle": null, "number": "1"}]},
"address": "/Source-Files-and-Modules/"}],
"wf-rel":
[{"id": "wf-rel",
"data":
{"title": "Well-Founded Relations",
"shortTitle": null,
"sectionNum": "7.6.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Well-Founded Recursion",
"shortTitle": null,
"number": "3"},
{"title": "Well-Founded Relations",
"shortTitle": null,
"number": "1"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"well-founded-recursion":
[{"id": "well-founded-recursion",
"data":
{"title": "Well-Founded Recursion",
"shortTitle": null,
"sectionNum": "7.6.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Well-Founded Recursion",
"shortTitle": null,
"number": "3"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"well-founded-preprocessing":
[{"id": "well-founded-preprocessing",
"data":
{"title": "Preprocessing Function Definitions",
"shortTitle": null,
"sectionNum": "7.6.3.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Well-Founded Recursion",
"shortTitle": null,
"number": "3"},
{"title": "Preprocessing Function Definitions",
"shortTitle": null,
"number": "6"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"well-formed-inductives":
[{"id": "well-formed-inductives",
"data":
{"title": "Well-Formedness Requirements",
"shortTitle": null,
"sectionNum": "4.4.3.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Well-Formedness Requirements",
"shortTitle": null,
"number": "2"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"unsafe":
[{"id": "unsafe",
"data":
{"title": "Unsafe Definitions",
"shortTitle": null,
"sectionNum": "7.6.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial and Unsafe Definitions",
"shortTitle": null,
"number": "5"},
{"title": "Unsafe Definitions", "shortTitle": null, "number": "2"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"unexpand-and-delab":
[{"id": "unexpand-and-delab",
"data":
{"title": "Extending Lean's Output",
"shortTitle": null,
"sectionNum": "22.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Extending Lean's Output",
"shortTitle": null,
"number": "7"}]},
"address": "/Notations-and-Macros/Extending-Lean___s-Output/"}],
"typographical-conventions":
[{"id": "typographical-conventions",
"data":
{"title": "Typographical Conventions",
"shortTitle": null,
"sectionNum": "1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Introduction", "shortTitle": null, "number": "1"},
{"title": "Typographical Conventions",
"shortTitle": null,
"number": "2"}]},
"address": "/Introduction/"}],
"typed-syntax-helpers":
[{"id": "typed-syntax-helpers",
"data":
{"title": "Helpers for Typed Syntax",
"shortTitle": null,
"sectionNum": "22.4.9.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"},
{"title": "Helpers for Typed Syntax",
"shortTitle": null,
"number": "9"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"typed-syntax":
[{"id": "typed-syntax",
"data":
{"title": "Typed Syntax",
"shortTitle": null,
"sectionNum": "22.4.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"},
{"title": "Typed Syntax", "shortTitle": null, "number": "7"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"type-system":
[{"id": "type-system",
"data":
{"title": "The Type System",
"shortTitle": null,
"sectionNum": "4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"}]},
"address": "/The-Type-System/"}],
"type-classes":
[{"id": "type-classes",
"data":
{"title": "Type Classes",
"shortTitle": null,
"sectionNum": "11.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Type Classes", "shortTitle": null, "number": "11"}]},
"address": "/Type-Classes/"}],
"tuples":
[{"id": "tuples",
"data":
{"title": "Tuples",
"shortTitle": null,
"sectionNum": "20.13.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Tuples", "shortTitle": null, "number": "13"}]},
"address": "/Basic-Types/Tuples/"}],
"true-false":
[{"id": "true-false",
"data":
{"title": "Truth",
"shortTitle": null,
"sectionNum": "19.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Propositions", "shortTitle": null, "number": "19"},
{"title": "Truth", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Propositions/Truth/"}],
"totality":
[{"id": "totality",
"data":
{"title": "Totality and Termination",
"shortTitle": null,
"sectionNum": "4.1.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Functions", "shortTitle": null, "number": "1"},
{"title": "Totality and Termination",
"shortTitle": null,
"number": "4"}]},
"address": "/The-Type-System/Functions/"}],
"token-antiquotations":
[{"id": "token-antiquotations",
"data":
{"title": "Token Antiquotations",
"shortTitle": null,
"sectionNum": "22.5.3.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Quotation", "shortTitle": null, "number": "3"},
{"title": "Token Antiquotations",
"shortTitle": null,
"number": "3"}]},
"address": "/Notations-and-Macros/Macros/"}],
"the-simplifier":
[{"id": "the-simplifier",
"data":
{"title": "The Simplifier",
"shortTitle": null,
"sectionNum": "16.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"}]},
"address": "/The-Simplifier/"}],
"test-lint-drivers":
[{"id": "test-lint-drivers",
"data":
{"title": "Test and Lint Drivers",
"shortTitle": null,
"sectionNum": "24.1.1.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Concepts and Terminology",
"shortTitle": null,
"number": "1"},
{"title": "Test and Lint Drivers",
"shortTitle": null,
"number": "4"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"terms":
[{"id": "terms",
"data":
{"title": "Terms",
"shortTitle": null,
"sectionNum": "10.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Terms", "shortTitle": null, "number": "10"}]},
"address": "/Terms/"}],
"terminal-simp":
[{"id": "terminal-simp",
"data":
{"title": "Terminal vs Non-Terminal Positions",
"shortTitle": null,
"sectionNum": "16.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Terminal vs Non-Terminal Positions",
"shortTitle": null,
"number": "5"}]},
"address": "/The-Simplifier/Terminal-vs-Non-Terminal-Positions/"}],
"technical-terms":
[{"id": "technical-terms",
"data":
{"title": "Technical Terminology",
"shortTitle": null,
"sectionNum": "1.2.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Introduction", "shortTitle": null, "number": "1"},
{"title": "Typographical Conventions",
"shortTitle": null,
"number": "2"},
{"title": "Technical Terminology",
"shortTitle": null,
"number": "3"}]},
"address": "/Introduction/"}],
"tactics":
[{"id": "tactics",
"data":
{"title": "Tactic Proofs",
"shortTitle": null,
"sectionNum": "13.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"}]},
"address": "/Tactic-Proofs/"}],
"tactic-ref-term-helpers":
[{"id": "tactic-ref-term-helpers",
"data":
{"title": "Term Elaboration Backends",
"shortTitle": null,
"sectionNum": "13.5.20.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Term Elaboration Backends",
"shortTitle": null,
"number": "20"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-spred":
[{"id": "tactic-ref-spred",
"data":
{"title": "Tactics for Stateful Goals in Std.Do.SPred",
"shortTitle": null,
"sectionNum": "13.5.23.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Verification Condition Generation",
"shortTitle": null,
"number": "23"},
{"title": "Tactics for Stateful Goals in Std.Do.SPred",
"shortTitle": null,
"number": "1"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-search":
[{"id": "tactic-ref-search",
"data":
{"title": "Library Search",
"shortTitle": null,
"sectionNum": "13.5.15.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Library Search", "shortTitle": null, "number": "15"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-sat":
[{"id": "tactic-ref-sat",
"data":
{"title": "SAT Solver Integration",
"shortTitle": null,
"sectionNum": "13.5.17.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Decision Procedures", "shortTitle": null, "number": "17"},
{"title": "SAT Solver Integration",
"shortTitle": null,
"number": "1"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-rw":
[{"id": "tactic-ref-rw",
"data":
{"title": "Rewriting",
"shortTitle": null,
"sectionNum": "13.5.13.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Rewriting", "shortTitle": null, "number": "13"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-relations":
[{"id": "tactic-ref-relations",
"data":
{"title": "Relations",
"shortTitle": null,
"sectionNum": "13.5.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Relations", "shortTitle": null, "number": "4"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-quantifiers":
[{"id": "tactic-ref-quantifiers",
"data":
{"title": "Quantifiers",
"shortTitle": null,
"sectionNum": "13.5.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Quantifiers", "shortTitle": null, "number": "3"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-other":
[{"id": "tactic-ref-other",
"data":
{"title": "Other",
"shortTitle": null,
"sectionNum": "13.5.22.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Other", "shortTitle": null, "number": "22"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-mvcgen":
[{"id": "tactic-ref-mvcgen",
"data":
{"title": "Verification Condition Generation",
"shortTitle": null,
"sectionNum": "13.5.23.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Verification Condition Generation",
"shortTitle": null,
"number": "23"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-lemmas":
[{"id": "tactic-ref-lemmas",
"data":
{"title": "Lemmas",
"shortTitle": null,
"sectionNum": "13.5.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Lemmas", "shortTitle": null, "number": "6"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-inductive-intro":
[{"id": "tactic-ref-inductive-intro",
"data":
{"title": "Introduction",
"shortTitle": null,
"sectionNum": "13.5.14.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Inductive Types", "shortTitle": null, "number": "14"},
{"title": "Introduction", "shortTitle": null, "number": "1"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-inductive-elim":
[{"id": "tactic-ref-inductive-elim",
"data":
{"title": "Elimination",
"shortTitle": null,
"sectionNum": "13.5.14.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Inductive Types", "shortTitle": null, "number": "14"},
{"title": "Elimination", "shortTitle": null, "number": "2"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-inductive":
[{"id": "tactic-ref-inductive",
"data":
{"title": "Inductive Types",
"shortTitle": null,
"sectionNum": "13.5.14.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Inductive Types", "shortTitle": null, "number": "14"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-goals":
[{"id": "tactic-ref-goals",
"data":
{"title": "Goal Management",
"shortTitle": null,
"sectionNum": "13.5.8.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Goal Management", "shortTitle": null, "number": "8"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-false":
[{"id": "tactic-ref-false",
"data":
{"title": "Falsehood",
"shortTitle": null,
"sectionNum": "13.5.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Falsehood", "shortTitle": null, "number": "7"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-ext":
[{"id": "tactic-ref-ext",
"data":
{"title": "Extensionality",
"shortTitle": null,
"sectionNum": "13.5.10.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Extensionality", "shortTitle": null, "number": "10"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-equality":
[{"id": "tactic-ref-equality",
"data":
{"title": "Equality",
"shortTitle": null,
"sectionNum": "13.5.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Relations", "shortTitle": null, "number": "4"},
{"title": "Equality", "shortTitle": null, "number": "1"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-decision":
[{"id": "tactic-ref-decision",
"data":
{"title": "Decision Procedures",
"shortTitle": null,
"sectionNum": "13.5.17.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Decision Procedures",
"shortTitle": null,
"number": "17"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-debug":
[{"id": "tactic-ref-debug",
"data":
{"title": "Debugging Utilities",
"shortTitle": null,
"sectionNum": "13.5.21.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Debugging Utilities",
"shortTitle": null,
"number": "21"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-control":
[{"id": "tactic-ref-control",
"data":
{"title": "Control Flow",
"shortTitle": null,
"sectionNum": "13.5.19.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Control Flow", "shortTitle": null, "number": "19"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-classical":
[{"id": "tactic-ref-classical",
"data":
{"title": "Classical Logic",
"shortTitle": null,
"sectionNum": "13.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Classical Logic", "shortTitle": null, "number": "1"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-casts":
[{"id": "tactic-ref-casts",
"data":
{"title": "Cast Management",
"shortTitle": null,
"sectionNum": "13.5.9.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Cast Management", "shortTitle": null, "number": "9"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-cases":
[{"id": "tactic-ref-cases",
"data":
{"title": "Case Analysis",
"shortTitle": null,
"sectionNum": "13.5.16.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Case Analysis", "shortTitle": null, "number": "16"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-assumptions":
[{"id": "tactic-ref-assumptions",
"data":
{"title": "Assumptions",
"shortTitle": null,
"sectionNum": "13.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Assumptions", "shortTitle": null, "number": "2"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref-associativity-commutativity":
[{"id": "tactic-ref-associativity-commutativity",
"data":
{"title": "Associativity and Commutativity",
"shortTitle": null,
"sectionNum": "13.5.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Associativity and Commutativity",
"shortTitle": null,
"number": "5"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-ref":
[{"id": "tactic-ref",
"data":
{"title": "Tactic Reference",
"shortTitle": null,
"sectionNum": "13.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-reducibility":
[{"id": "tactic-reducibility",
"data":
{"title": "Controlling Reduction",
"shortTitle": null,
"sectionNum": "13.5.18.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Controlling Reduction",
"shortTitle": null,
"number": "18"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"tactic-macros":
[{"id": "tactic-macros",
"data":
{"title": "Tactic Macros",
"shortTitle": null,
"sectionNum": "13.8.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Custom Tactics", "shortTitle": null, "number": "8"},
{"title": "Tactic Macros", "shortTitle": null, "number": "1"}]},
"address": "/Tactic-Proofs/Custom-Tactics/"}],
"tactic-macro-extension":
[{"id": "tactic-macro-extension",
"data":
{"title": "Extensible Tactic Macros",
"shortTitle": null,
"sectionNum": "13.8.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Custom Tactics", "shortTitle": null, "number": "8"},
{"title": "Tactic Macros", "shortTitle": null, "number": "1"},
{"title": "Extensible Tactic Macros",
"shortTitle": null,
"number": "1"}]},
"address": "/Tactic-Proofs/Custom-Tactics/"}],
"tactic-language-unfolding":
[{"id": "tactic-language-unfolding",
"data":
{"title": "Controlling Unfolding",
"shortTitle": null,
"sectionNum": "13.3.6.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Namespace and Option Management",
"shortTitle": null,
"number": "6"},
{"title": "Controlling Unfolding",
"shortTitle": null,
"number": "1"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-success-failure":
[{"id": "tactic-language-success-failure",
"data":
{"title": "Success and Failure",
"shortTitle": null,
"sectionNum": "13.3.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"},
{"title": "Success and Failure", "shortTitle": null, "number": "1"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-sequencing":
[{"id": "tactic-language-sequencing",
"data":
{"title": "Sequencing",
"shortTitle": null,
"sectionNum": "13.3.1.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"},
{"title": "Goal Selection", "shortTitle": null, "number": "3"},
{"title": "Sequencing", "shortTitle": null, "number": "1"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-options":
[{"id": "tactic-language-options",
"data":
{"title": "Options",
"shortTitle": null,
"sectionNum": "13.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Options", "shortTitle": null, "number": "4"}]},
"address": "/Tactic-Proofs/Options/"}],
"tactic-language-namespaces-options":
[{"id": "tactic-language-namespaces-options",
"data":
{"title": "Namespace and Option Management",
"shortTitle": null,
"sectionNum": "13.3.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Namespace and Option Management",
"shortTitle": null,
"number": "6"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-multiple-goals":
[{"id": "tactic-language-multiple-goals",
"data":
{"title": "Working on Multiple Goals",
"shortTitle": null,
"sectionNum": "13.3.1.3.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"},
{"title": "Goal Selection", "shortTitle": null, "number": "3"},
{"title": "Working on Multiple Goals",
"shortTitle": null,
"number": "2"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-local-defs":
[{"id": "tactic-language-local-defs",
"data":
{"title": "Local Definitions and Proofs",
"shortTitle": null,
"sectionNum": "13.3.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Local Definitions and Proofs",
"shortTitle": null,
"number": "4"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-iteration":
[{"id": "tactic-language-iteration",
"data":
{"title": "Repetition and Iteration",
"shortTitle": null,
"sectionNum": "13.3.1.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"},
{"title": "Repetition and Iteration",
"shortTitle": null,
"number": "5"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-hygiene":
[{"id": "tactic-language-hygiene",
"data":
{"title": "Names and Hygiene",
"shortTitle": null,
"sectionNum": "13.3.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Names and Hygiene", "shortTitle": null, "number": "2"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-goal-selection":
[{"id": "tactic-language-goal-selection",
"data":
{"title": "Goal Selection",
"shortTitle": null,
"sectionNum": "13.3.1.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"},
{"title": "Goal Selection", "shortTitle": null, "number": "3"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-focusing":
[{"id": "tactic-language-focusing",
"data":
{"title": "Focusing",
"shortTitle": null,
"sectionNum": "13.3.1.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"},
{"title": "Focusing", "shortTitle": null, "number": "4"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-control":
[{"id": "tactic-language-control",
"data":
{"title": "Control Structures",
"shortTitle": null,
"sectionNum": "13.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-branching":
[{"id": "tactic-language-branching",
"data":
{"title": "Branching",
"shortTitle": null,
"sectionNum": "13.3.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Control Structures", "shortTitle": null, "number": "1"},
{"title": "Branching", "shortTitle": null, "number": "2"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-assumptions":
[{"id": "tactic-language-assumptions",
"data":
{"title": "Accessing Assumptions",
"shortTitle": null,
"sectionNum": "13.3.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Names and Hygiene", "shortTitle": null, "number": "2"},
{"title": "Accessing Assumptions",
"shortTitle": null,
"number": "1"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language-assumption-management":
[{"id": "tactic-language-assumption-management",
"data":
{"title": "Assumption Management",
"shortTitle": null,
"sectionNum": "13.3.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Assumption Management",
"shortTitle": null,
"number": "3"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-language":
[{"id": "tactic-language",
"data":
{"title": "The Tactic Language",
"shortTitle": null,
"sectionNum": "13.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"tactic-config":
[{"id": "tactic-config",
"data":
{"title": "Configuration",
"shortTitle": null,
"sectionNum": "13.3.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "The Tactic Language", "shortTitle": null, "number": "3"},
{"title": "Configuration", "shortTitle": null, "number": "5"}]},
"address": "/Tactic-Proofs/The-Tactic-Language/"}],
"syntax-rules":
[{"id": "syntax-rules",
"data":
{"title": "Syntax Rules",
"shortTitle": null,
"sectionNum": "22.4.11.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"},
{"title": "Syntax Rules", "shortTitle": null, "number": "11"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"syntax-indentation":
[{"id": "syntax-indentation",
"data":
{"title": "Indentation",
"shortTitle": null,
"sectionNum": "22.4.12.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"},
{"title": "Indentation", "shortTitle": null, "number": "12"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"syntax-ext":
[{"id": "syntax-ext",
"data":
{"title": "Defining New Syntax",
"shortTitle": null,
"sectionNum": "22.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"syntax-data":
[{"id": "syntax-data",
"data":
{"title": "Syntax Model",
"shortTitle": null,
"sectionNum": "22.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"},
{"title": "Syntax Model", "shortTitle": null, "number": "1"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"syntax-categories":
[{"id": "syntax-categories",
"data":
{"title": "Syntax Categories",
"shortTitle": null,
"sectionNum": "22.4.10.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"},
{"title": "Syntax Categories", "shortTitle": null, "number": "10"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"sum-types":
[{"id": "sum-types",
"data":
{"title": "Sum Types",
"shortTitle": null,
"sectionNum": "20.14.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Sum Types", "shortTitle": null, "number": "14"}]},
"address": "/Basic-Types/Sum-Types/"}],
"sum-syntax":
[{"id": "sum-syntax",
"data":
{"title": "Syntax",
"shortTitle": null,
"sectionNum": "20.14.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Sum Types", "shortTitle": null, "number": "14"},
{"title": "Syntax", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Sum-Types/"}],
"sum-api":
[{"id": "sum-api",
"data":
{"title": "API Reference",
"shortTitle": null,
"sectionNum": "20.14.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Sum Types", "shortTitle": null, "number": "14"},
{"title": "API Reference", "shortTitle": null, "number": "2"}]},
"address": "/Basic-Types/Sum-Types/"}],
"subsingleton-elimination":
[{"id": "subsingleton-elimination",
"data":
{"title": "Subsingleton Elimination",
"shortTitle": null,
"sectionNum": "4.4.3.1.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Recursors", "shortTitle": null, "number": "1"},
{"title": "Recursor Types", "shortTitle": null, "number": "1"},
{"title": "Subsingleton Elimination",
"shortTitle": null,
"number": "1"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"subarray":
[{"id": "subarray",
"data":
{"title": "Sub-Arrays",
"shortTitle": null,
"sectionNum": "20.16.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Arrays", "shortTitle": null, "number": "16"},
{"title": "Sub-Arrays", "shortTitle": null, "number": "5"}]},
"address": "/Basic-Types/Arrays/"}],
"structures":
[{"id": "structures",
"data":
{"title": "Structure Declarations",
"shortTitle": null,
"sectionNum": "4.4.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Structure Declarations",
"shortTitle": null,
"number": "2"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"structure-params":
[{"id": "structure-params",
"data":
{"title": "Structure Parameters",
"shortTitle": null,
"sectionNum": "4.4.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Structure Declarations",
"shortTitle": null,
"number": "2"},
{"title": "Structure Parameters",
"shortTitle": null,
"number": "1"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"structure-inheritance":
[{"id": "structure-inheritance",
"data":
{"title": "Structure Inheritance",
"shortTitle": null,
"sectionNum": "4.4.2.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Structure Declarations",
"shortTitle": null,
"number": "2"},
{"title": "Structure Inheritance",
"shortTitle": null,
"number": "4"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"structure-fields":
[{"id": "structure-fields",
"data":
{"title": "Fields",
"shortTitle": null,
"sectionNum": "4.4.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Structure Declarations",
"shortTitle": null,
"number": "2"},
{"title": "Fields", "shortTitle": null, "number": "2"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"structure-constructors":
[{"id": "structure-constructors",
"data":
{"title": "Structure Constructors",
"shortTitle": null,
"sectionNum": "4.4.2.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Structure Declarations",
"shortTitle": null,
"number": "2"},
{"title": "Structure Constructors",
"shortTitle": null,
"number": "3"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"structural-recursion":
[{"id": "structural-recursion",
"data":
{"title": "Structural Recursion",
"shortTitle": null,
"sectionNum": "7.6.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Structural Recursion",
"shortTitle": null,
"number": "2"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"string-syntax":
[{"id": "string-syntax",
"data":
{"title": "Syntax",
"shortTitle": null,
"sectionNum": "20.8.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "Syntax", "shortTitle": null, "number": "3"}]},
"address": "/Basic-Types/Strings/"}],
"string-runtime":
[{"id": "string-runtime",
"data":
{"title": "Run-Time Representation",
"shortTitle": null,
"sectionNum": "20.8.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "Run-Time Representation",
"shortTitle": null,
"number": "2"}]},
"address": "/Basic-Types/Strings/"}],
"string-performance":
[{"id": "string-performance",
"data":
{"title": "Performance Notes",
"shortTitle": null,
"sectionNum": "20.8.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "Run-Time Representation",
"shortTitle": null,
"number": "2"},
{"title": "Performance Notes", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Strings/"}],
"string-literals":
[{"id": "string-literals",
"data":
{"title": "String Literals",
"shortTitle": null,
"sectionNum": "20.8.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "Syntax", "shortTitle": null, "number": "3"},
{"title": "String Literals", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Strings/"}],
"string-iterators":
[{"id": "string-iterators",
"data":
{"title": "Legacy Iterators",
"shortTitle": null,
"sectionNum": "20.8.4.10.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Legacy Iterators", "shortTitle": null, "number": "10"}]},
"address": "/Basic-Types/Strings/"}],
"string-interpolation":
[{"id": "string-interpolation",
"data":
{"title": "Interpolated Strings",
"shortTitle": null,
"sectionNum": "20.8.3.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "Syntax", "shortTitle": null, "number": "3"},
{"title": "Interpolated Strings",
"shortTitle": null,
"number": "2"}]},
"address": "/Basic-Types/Strings/"}],
"string-ffi":
[{"id": "string-ffi",
"data":
{"title": "FFI",
"shortTitle": null,
"sectionNum": "20.8.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "FFI", "shortTitle": null, "number": "5"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-valid-pos":
[{"id": "string-api-valid-pos",
"data":
{"title": "Positions",
"shortTitle": null,
"sectionNum": "20.8.4.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Positions", "shortTitle": null, "number": "4"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-substring":
[{"id": "string-api-substring",
"data":
{"title": "Raw Substrings",
"shortTitle": null,
"sectionNum": "20.8.4.12.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Raw Substrings", "shortTitle": null, "number": "12"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-slice":
[{"id": "string-api-slice",
"data":
{"title": "String Slices",
"shortTitle": null,
"sectionNum": "20.8.4.11.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "String Slices", "shortTitle": null, "number": "11"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-props":
[{"id": "string-api-props",
"data":
{"title": "Properties",
"shortTitle": null,
"sectionNum": "20.8.4.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Properties", "shortTitle": null, "number": "3"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-pos":
[{"id": "string-api-pos",
"data":
{"title": "Raw Positions",
"shortTitle": null,
"sectionNum": "20.8.4.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Raw Positions", "shortTitle": null, "number": "5"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-modify":
[{"id": "string-api-modify",
"data":
{"title": "Manipulation",
"shortTitle": null,
"sectionNum": "20.8.4.9.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Manipulation", "shortTitle": null, "number": "9"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-meta":
[{"id": "string-api-meta",
"data":
{"title": "Metaprogramming",
"shortTitle": null,
"sectionNum": "20.8.4.13.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Metaprogramming", "shortTitle": null, "number": "13"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-lookup":
[{"id": "string-api-lookup",
"data":
{"title": "Lookups and Modifications",
"shortTitle": null,
"sectionNum": "20.8.4.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Lookups and Modifications",
"shortTitle": null,
"number": "6"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-fold":
[{"id": "string-api-fold",
"data":
{"title": "Folds and Aggregation",
"shortTitle": null,
"sectionNum": "20.8.4.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Folds and Aggregation",
"shortTitle": null,
"number": "7"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-encoding":
[{"id": "string-api-encoding",
"data":
{"title": "Encodings",
"shortTitle": null,
"sectionNum": "20.8.4.14.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Encodings", "shortTitle": null, "number": "14"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-convert":
[{"id": "string-api-convert",
"data":
{"title": "Conversions",
"shortTitle": null,
"sectionNum": "20.8.4.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Conversions", "shortTitle": null, "number": "2"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-compare":
[{"id": "string-api-compare",
"data":
{"title": "Comparisons",
"shortTitle": null,
"sectionNum": "20.8.4.8.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Comparisons", "shortTitle": null, "number": "8"}]},
"address": "/Basic-Types/Strings/"}],
"string-api-build":
[{"id": "string-api-build",
"data":
{"title": "Constructing",
"shortTitle": null,
"sectionNum": "20.8.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Constructing", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Strings/"}],
"string-api":
[{"id": "string-api",
"data":
{"title": "API Reference",
"shortTitle": null,
"sectionNum": "20.8.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "API Reference", "shortTitle": null, "number": "4"}]},
"address": "/Basic-Types/Strings/"}],
"strict-positivity":
[{"id": "strict-positivity",
"data":
{"title": "Strict Positivity",
"shortTitle": null,
"sectionNum": "4.4.3.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Well-Formedness Requirements",
"shortTitle": null,
"number": "2"},
{"title": "Strict Positivity", "shortTitle": null, "number": "2"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"stdio":
[{"id": "stdio",
"data":
{"title": "Standard I/O",
"shortTitle": null,
"sectionNum": "15.5.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "Files, File Handles, and Streams",
"shortTitle": null,
"number": "5"},
{"title": "Standard I/O", "shortTitle": null, "number": "5"}]},
"address": "/IO/Files___-File-Handles___-and-Streams/"}],
"state-monads":
[{"id": "state-monads",
"data":
{"title": "State",
"shortTitle": null,
"sectionNum": "14.5.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Varieties of Monads", "shortTitle": null, "number": "5"},
{"title": "State", "shortTitle": null, "number": "4"}]},
"address":
"/Functors___-Monads-and--do--Notation/Varieties-of-Monads/"}],
"standard-axioms":
[{"id": "standard-axioms",
"data":
{"title": "Standard Axioms",
"shortTitle": null,
"sectionNum": "8.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Axioms", "shortTitle": null, "number": "8"},
{"title": "Standard Axioms", "shortTitle": null, "number": "4"}]},
"address": "/Axioms/"}],
"squash-types":
[{"id": "squash-types",
"data":
{"title": "Squash Types",
"shortTitle": null,
"sectionNum": "4.5.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Squash Types", "shortTitle": null, "number": "7"}]},
"address": "/The-Type-System/Quotients/"}],
"splices":
[{"id": "splices",
"data":
{"title": "Splices",
"shortTitle": null,
"sectionNum": "22.5.3.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Quotation", "shortTitle": null, "number": "3"},
{"title": "Splices", "shortTitle": null, "number": "2"}]},
"address": "/Notations-and-Macros/Macros/"}],
"source-info":
[{"id": "source-info",
"data":
{"title": "Source Positions",
"shortTitle": null,
"sectionNum": "22.4.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Defining New Syntax", "shortTitle": null, "number": "4"},
{"title": "Source Positions", "shortTitle": null, "number": "5"}]},
"address": "/Notations-and-Macros/Defining-New-Syntax/"}],
"sort-coercion":
[{"id": "sort-coercion",
"data":
{"title": "Coercing to Sorts",
"shortTitle": null,
"sectionNum": "12.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Coercions", "shortTitle": null, "number": "12"},
{"title": "Coercing to Sorts", "shortTitle": null, "number": "3"}]},
"address": "/Coercions/Coercing-to-Sorts/"}],
"simp-vs-rw":
[{"id": "simp-vs-rw",
"data":
{"title": "Simplification vs Rewriting",
"shortTitle": null,
"sectionNum": "16.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Simplification vs Rewriting",
"shortTitle": null,
"number": "7"}]},
"address": "/The-Simplifier/Simplification-vs-Rewriting/"}],
"simp-tactics":
[{"id": "simp-tactics",
"data":
{"title": "Simplification",
"shortTitle": null,
"sectionNum": "13.5.12.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Tactic Reference", "shortTitle": null, "number": "5"},
{"title": "Simplification", "shortTitle": null, "number": "12"}]},
"address": "/Tactic-Proofs/Tactic-Reference/"}],
"simp-tactic-params":
[{"id": "simp-tactic-params",
"data":
{"title": "Parameters",
"shortTitle": null,
"sectionNum": "16.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Invoking the Simplifier",
"shortTitle": null,
"number": "1"},
{"title": "Parameters", "shortTitle": null, "number": "1"}]},
"address": "/The-Simplifier/Invoking-the-Simplifier/"}],
"simp-tactic-naming":
[{"id": "simp-tactic-naming",
"data":
{"title": "Invoking the Simplifier",
"shortTitle": null,
"sectionNum": "16.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Invoking the Simplifier",
"shortTitle": null,
"number": "1"}]},
"address": "/The-Simplifier/Invoking-the-Simplifier/"}],
"simp-sets":
[{"id": "simp-sets",
"data":
{"title": "Simp sets",
"shortTitle": null,
"sectionNum": "16.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Simp sets", "shortTitle": null, "number": "3"}]},
"address": "/The-Simplifier/Simp-sets/"}],
"simp-rewrites":
[{"id": "simp-rewrites",
"data":
{"title": "Rewrite Rules",
"shortTitle": null,
"sectionNum": "16.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Rewrite Rules", "shortTitle": null, "number": "2"}]},
"address": "/The-Simplifier/Rewrite-Rules/"}],
"simp-options":
[{"id": "simp-options",
"data":
{"title": "Options",
"shortTitle": null,
"sectionNum": "16.6.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Configuring Simplification",
"shortTitle": null,
"number": "6"},
{"title": "Options", "shortTitle": null, "number": "1"}]},
"address": "/The-Simplifier/Configuring-Simplification/"}],
"simp-normal-forms":
[{"id": "simp-normal-forms",
"data":
{"title": "Simp Normal Forms",
"shortTitle": null,
"sectionNum": "16.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Simp Normal Forms", "shortTitle": null, "number": "4"}]},
"address": "/The-Simplifier/Simp-Normal-Forms/"}],
"simp-config":
[{"id": "simp-config",
"data":
{"title": "Configuring Simplification",
"shortTitle": null,
"sectionNum": "16.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Simplifier", "shortTitle": null, "number": "16"},
{"title": "Configuring Simplification",
"shortTitle": null,
"number": "6"}]},
"address": "/The-Simplifier/Configuring-Simplification/"}],
"signature-syntax":
[{"id": "signature-syntax",
"data":
{"title": "Headers and Signatures",
"shortTitle": null,
"sectionNum": "7.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Headers and Signatures",
"shortTitle": null,
"number": "2"}]},
"address": "/Definitions/Headers-and-Signatures/"}],
"sigma-types":
[{"id": "sigma-types",
"data":
{"title": "Dependent Pairs",
"shortTitle": null,
"sectionNum": "20.13.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Tuples", "shortTitle": null, "number": "13"},
{"title": "Dependent Pairs", "shortTitle": null, "number": "2"}]},
"address": "/Basic-Types/Tuples/"}],
"setoids":
[{"id": "setoids",
"data":
{"title": "Setoids",
"shortTitle": null,
"sectionNum": "4.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Setoids", "shortTitle": null, "number": "2"}]},
"address": "/The-Type-System/Quotients/"}],
"section-variables":
[{"id": "section-variables",
"data":
{"title": "Section Variables",
"shortTitle": null,
"sectionNum": "6.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Namespaces and Sections",
"shortTitle": null,
"number": "6"},
{"title": "Section Scopes", "shortTitle": null, "number": "2"},
{"title": "Section Variables", "shortTitle": null, "number": "2"}]},
"address": "/Namespaces-and-Sections/"}],
"scopes":
[{"id": "scopes",
"data":
{"title": "Section Scopes",
"shortTitle": null,
"sectionNum": "6.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Namespaces and Sections",
"shortTitle": null,
"number": "6"},
{"title": "Section Scopes", "shortTitle": null, "number": "2"}]},
"address": "/Namespaces-and-Sections/"}],
"scoped-attributes":
[{"id": "scoped-attributes",
"data":
{"title": "Scoped Attributes",
"shortTitle": null,
"sectionNum": "9.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Attributes", "shortTitle": null, "number": "9"},
{"title": "Scoped Attributes", "shortTitle": null, "number": "3"}]},
"address": "/Attributes/"}],
"scope-commands":
[{"id": "scope-commands",
"data":
{"title": "Controlling Section Scopes",
"shortTitle": null,
"sectionNum": "6.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Namespaces and Sections",
"shortTitle": null,
"number": "6"},
{"title": "Section Scopes", "shortTitle": null, "number": "2"},
{"title": "Controlling Section Scopes",
"shortTitle": null,
"number": "1"}]},
"address": "/Namespaces-and-Sections/"}],
"runtime":
[{"id": "runtime",
"data":
{"title": "Run-Time Code",
"shortTitle": null,
"sectionNum": "23.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Run-Time Code", "shortTitle": null, "number": "23"}]},
"address": "/Run-Time-Code/"}],
"run-time-inductives":
[{"id": "run-time-inductives",
"data":
{"title": "Run-Time Representation",
"shortTitle": null,
"sectionNum": "4.4.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Run-Time Representation",
"shortTitle": null,
"number": "4"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"repr-instance-howto":
[{"id": "repr-instance-howto",
"data":
{"title": "How To Write a Repr Instance",
"shortTitle": null,
"sectionNum": "3.7.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Interacting with Lean", "shortTitle": null, "number": "3"},
{"title": "Formatted Output", "shortTitle": null, "number": "7"},
{"title": "Repr", "shortTitle": null, "number": "2"},
{"title": "How To Write a Repr Instance",
"shortTitle": null,
"number": "1"}]},
"address": "/Interacting-with-Lean/"}],
"repr":
[{"id": "repr",
"data":
{"title": "Repr",
"shortTitle": null,
"sectionNum": "3.7.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Interacting with Lean", "shortTitle": null, "number": "3"},
{"title": "Formatted Output", "shortTitle": null, "number": "7"},
{"title": "Repr", "shortTitle": null, "number": "2"}]},
"address": "/Interacting-with-Lean/"}],
"release-v4.9.0":
[{"id": "release-v4___9___0",
"data":
{"title": "Lean 4.9.0 (2024-07-01)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.9.0 (2024-07-01)",
"shortTitle": null,
"number": "19"}]},
"address": "/releases/v4.9.0/"}],
"release-v4.8.0":
[{"id": "release-v4___8___0",
"data":
{"title": "Lean 4.8.0 (2024-06-05)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.8.0 (2024-06-05)",
"shortTitle": null,
"number": "20"}]},
"address": "/releases/v4.8.0/"}],
"release-v4.7.0":
[{"id": "release-v4___7___0",
"data":
{"title": "Lean 4.7.0 (2024-04-03)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.7.0 (2024-04-03)",
"shortTitle": null,
"number": "21"}]},
"address": "/releases/v4.7.0/"}],
"release-v4.6.0":
[{"id": "release-v4___6___0",
"data":
{"title": "Lean 4.6.0 (2024-02-29)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.6.0 (2024-02-29)",
"shortTitle": null,
"number": "22"}]},
"address": "/releases/v4.6.0/"}],
"release-v4.5.0":
[{"id": "release-v4___5___0",
"data":
{"title": "Lean 4.5.0 (2024-02-01)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.5.0 (2024-02-01)",
"shortTitle": null,
"number": "23"}]},
"address": "/releases/v4.5.0/"}],
"release-v4.4.0":
[{"id": "release-v4___4___0",
"data":
{"title": "Lean 4.4.0 (2023-12-31)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.4.0 (2023-12-31)",
"shortTitle": null,
"number": "24"}]},
"address": "/releases/v4.4.0/"}],
"release-v4.3.0":
[{"id": "release-v4___3___0",
"data":
{"title": "Lean 4.3.0 (2023-11-30)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.3.0 (2023-11-30)",
"shortTitle": null,
"number": "25"}]},
"address": "/releases/v4.3.0/"}],
"release-v4.26.0":
[{"id": "release-v4___26___0",
"data":
{"title": "Lean 4.26.0 (2025-12-13)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.26.0 (2025-12-13)",
"shortTitle": null,
"number": "1"}]},
"address": "/releases/v4.26.0/"}],
"release-v4.25.1":
[{"id": "release-v4___25___1",
"data":
{"title": "Lean 4.25.1 (2025-11-18)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.25.1 (2025-11-18)",
"shortTitle": null,
"number": "2"}]},
"address": "/releases/v4.25.1/"}],
"release-v4.25.0":
[{"id": "release-v4___25___0",
"data":
{"title": "Lean 4.25.0 (2025-11-14)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.25.0 (2025-11-14)",
"shortTitle": null,
"number": "3"}]},
"address": "/releases/v4.25.0/"}],
"release-v4.24.0":
[{"id": "release-v4___24___0",
"data":
{"title": "Lean 4.24.0 (2025-10-14)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.24.0 (2025-10-14)",
"shortTitle": null,
"number": "4"}]},
"address": "/releases/v4.24.0/"}],
"release-v4.23.0":
[{"id": "release-v4___23___0",
"data":
{"title": "Lean 4.23.0 (2025-09-15)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.23.0 (2025-09-15)",
"shortTitle": null,
"number": "5"}]},
"address": "/releases/v4.23.0/"}],
"release-v4.22.0":
[{"id": "release-v4___22___0",
"data":
{"title": "Lean 4.22.0 (2025-08-14)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.22.0 (2025-08-14)",
"shortTitle": null,
"number": "6"}]},
"address": "/releases/v4.22.0/"}],
"release-v4.21.0":
[{"id": "release-v4___21___0",
"data":
{"title": "Lean 4.21.0 (2025-06-30)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.21.0 (2025-06-30)",
"shortTitle": null,
"number": "7"}]},
"address": "/releases/v4.21.0/"}],
"release-v4.20.0":
[{"id": "release-v4___20___0",
"data":
{"title": "Lean 4.20.0 (2025-06-02)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.20.0 (2025-06-02)",
"shortTitle": null,
"number": "8"}]},
"address": "/releases/v4.20.0/"}],
"release-v4.2.0":
[{"id": "release-v4___2___0",
"data":
{"title": "Lean 4.2.0 (2023-10-31)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.2.0 (2023-10-31)",
"shortTitle": null,
"number": "26"}]},
"address": "/releases/v4.2.0/"}],
"release-v4.19.0":
[{"id": "release-v4___19___0",
"data":
{"title": "Lean 4.19.0 (2025-05-01)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.19.0 (2025-05-01)",
"shortTitle": null,
"number": "9"}]},
"address": "/releases/v4.19.0/"}],
"release-v4.18.0":
[{"id": "release-v4___18___0",
"data":
{"title": "Lean 4.18.0 (2025-04-02)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.18.0 (2025-04-02)",
"shortTitle": null,
"number": "10"}]},
"address": "/releases/v4.18.0/"}],
"release-v4.17.0":
[{"id": "release-v4___17___0",
"data":
{"title": "Lean 4.17.0 (2025-03-03)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.17.0 (2025-03-03)",
"shortTitle": null,
"number": "11"}]},
"address": "/releases/v4.17.0/"}],
"release-v4.16.0":
[{"id": "release-v4___16___0",
"data":
{"title": "Lean 4.16.0 (2025-02-03)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.16.0 (2025-02-03)",
"shortTitle": null,
"number": "12"}]},
"address": "/releases/v4.16.0/"}],
"release-v4.15.0":
[{"id": "release-v4___15___0",
"data":
{"title": "Lean 4.15.0 (2025-01-04)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.15.0 (2025-01-04)",
"shortTitle": null,
"number": "13"}]},
"address": "/releases/v4.15.0/"}],
"release-v4.14.0":
[{"id": "release-v4___14___0",
"data":
{"title": "Lean 4.14.0 (2024-12-02)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.14.0 (2024-12-02)",
"shortTitle": null,
"number": "14"}]},
"address": "/releases/v4.14.0/"}],
"release-v4.13.0":
[{"id": "release-v4___13___0",
"data":
{"title": "Lean 4.13.0 (2024-11-01)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.13.0 (2024-11-01)",
"shortTitle": null,
"number": "15"}]},
"address": "/releases/v4.13.0/"}],
"release-v4.12.0":
[{"id": "release-v4___12___0",
"data":
{"title": "Lean 4.12.0 (2024-10-01)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.12.0 (2024-10-01)",
"shortTitle": null,
"number": "16"}]},
"address": "/releases/v4.12.0/"}],
"release-v4.11.0":
[{"id": "release-v4___11___0",
"data":
{"title": "Lean 4.11.0 (2024-09-02)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.11.0 (2024-09-02)",
"shortTitle": null,
"number": "17"}]},
"address": "/releases/v4.11.0/"}],
"release-v4.10.0":
[{"id": "release-v4___10___0",
"data":
{"title": "Lean 4.10.0 (2024-07-31)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.10.0 (2024-07-31)",
"shortTitle": null,
"number": "18"}]},
"address": "/releases/v4.10.0/"}],
"release-v4.1.0":
[{"id": "release-v4___1___0",
"data":
{"title": "Lean 4.1.0 (2023-09-26)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.1.0 (2023-09-26)",
"shortTitle": null,
"number": "27"}]},
"address": "/releases/v4.1.0/"}],
"release-v4.0.0-m5":
[{"id": "release-v4___0___0-m5",
"data":
{"title": "Lean 4.0.0-m5 (2022-08-22)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.0.0-m5 (2022-08-22)",
"shortTitle": null,
"number": "29"}]},
"address": "/releases/v4.0.0-m5/"}],
"release-v4.0.0-m4":
[{"id": "release-v4___0___0-m4",
"data":
{"title": "Lean 4.0.0-m4 (2022-03-27)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.0.0-m4 (2022-03-27)",
"shortTitle": null,
"number": "30"}]},
"address": "/releases/v4.0.0-m4/"}],
"release-v4.0.0-m3":
[{"id": "release-v4___0___0-m3",
"data":
{"title": "Lean 4.0.0-m3 (2022-01-31)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.0.0-m3 (2022-01-31)",
"shortTitle": null,
"number": "31"}]},
"address": "/releases/v4.0.0-m3/"}],
"release-v4.0.0-m2":
[{"id": "release-v4___0___0-m2",
"data":
{"title": "Lean 4.0.0-m2 (2021-03-02)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.0.0-m2 (2021-03-02)",
"shortTitle": null,
"number": "32"}]},
"address": "/releases/v4.0.0-m2/"}],
"release-v4.0.0-m1":
[{"id": "release-v4___0___0-m1",
"data":
{"title": "Lean 4.0.0-m1 (2021-01-04)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.0.0-m1 (2021-01-04)",
"shortTitle": null,
"number": "33"}]},
"address": "/releases/v4.0.0-m1/"}],
"release-v4.0.0":
[{"id": "release-v4___0___0",
"data":
{"title": "Lean 4.0.0 (2023-09-08)",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null},
{"title": "Lean 4.0.0 (2023-09-08)",
"shortTitle": null,
"number": "28"}]},
"address": "/releases/v4.0.0/"}],
"release-notes":
[{"id": "release-notes",
"data":
{"title": "Release Notes",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Release Notes", "shortTitle": null, "number": null}]},
"address": "/releases/"}],
"reference-counting":
[{"id": "reference-counting",
"data":
{"title": "Reference Counting",
"shortTitle": null,
"sectionNum": "23.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Run-Time Code", "shortTitle": null, "number": "23"},
{"title": "Reference Counting", "shortTitle": null, "number": "2"}]},
"address": "/Run-Time-Code/Reference-Counting/"}],
"reference-boxes":
[{"id": "reference-boxes",
"data":
{"title": "Constant, Syntax, and Tactic References",
"shortTitle": null,
"sectionNum": "1.2.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Introduction", "shortTitle": null, "number": "1"},
{"title": "Typographical Conventions",
"shortTitle": null,
"number": "2"},
{"title": "Constant, Syntax, and Tactic References",
"shortTitle": null,
"number": "4"}]},
"address": "/Introduction/"}],
"ref-locks":
[{"id": "ref-locks",
"data":
{"title": "Concurrency",
"shortTitle": null,
"sectionNum": "15.4.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "Mutable References", "shortTitle": null, "number": "4"},
{"title": "Concurrency", "shortTitle": null, "number": "2"}]},
"address": "/IO/Mutable-References/"}],
"reducibility":
[{"id": "reducibility",
"data":
{"title": "Controlling Reduction",
"shortTitle": null,
"sectionNum": "7.6.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Controlling Reduction",
"shortTitle": null,
"number": "6"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"recursors":
[{"id": "recursors",
"data":
{"title": "Recursors",
"shortTitle": null,
"sectionNum": "4.4.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Recursors", "shortTitle": null, "number": "1"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"recursor-types":
[{"id": "recursor-types",
"data":
{"title": "Recursor Types",
"shortTitle": null,
"sectionNum": "4.4.3.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Recursors", "shortTitle": null, "number": "1"},
{"title": "Recursor Types", "shortTitle": null, "number": "1"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"recursor-elaboration-helpers":
[{"id": "recursor-elaboration-helpers",
"data":
{"title": "Constructions for Termination Checking",
"shortTitle": null,
"sectionNum": "4.4.3.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Constructions for Termination Checking",
"shortTitle": null,
"number": "3"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"recursive-instances":
[{"id": "recursive-instances",
"data":
{"title": "Recursive Instances",
"shortTitle": null,
"sectionNum": "11.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Type Classes", "shortTitle": null, "number": "11"},
{"title": "Instance Declarations", "shortTitle": null, "number": "2"},
{"title": "Recursive Instances", "shortTitle": null, "number": "1"}]},
"address": "/Type-Classes/Instance-Declarations/"}],
"recursive-definitions":
[{"id": "recursive-definitions",
"data":
{"title": "Recursive Definitions",
"shortTitle": null,
"sectionNum": "7.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions",
"shortTitle": null,
"number": "6"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"reader-monad":
[{"id": "reader-monad",
"data":
{"title": "Reader",
"shortTitle": null,
"sectionNum": "14.5.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Varieties of Monads", "shortTitle": null, "number": "5"},
{"title": "Reader", "shortTitle": null, "number": "5"}]},
"address":
"/Functors___-Monads-and--do--Notation/Varieties-of-Monads/"}],
"raw-string-literals":
[{"id": "raw-string-literals",
"data":
{"title": "Raw String Literals",
"shortTitle": null,
"sectionNum": "20.8.3.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Strings", "shortTitle": null, "number": "8"},
{"title": "Syntax", "shortTitle": null, "number": "3"},
{"title": "Raw String Literals", "shortTitle": null, "number": "3"}]},
"address": "/Basic-Types/Strings/"}],
"raw-data":
[{"id": "raw-data",
"data":
{"title": "Raw Data and Invariants",
"shortTitle": null,
"sectionNum": "20.19.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Maps and Sets", "shortTitle": null, "number": "19"},
{"title": "Library Design", "shortTitle": null, "number": "1"},
{"title": "Raw Data and Invariants",
"shortTitle": null,
"number": "2"}]},
"address": "/Basic-Types/Maps-and-Sets/"}],
"ranges":
[{"id": "ranges",
"data":
{"title": "Ranges",
"shortTitle": null,
"sectionNum": "20.18.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Ranges", "shortTitle": null, "number": "18"}]},
"address": "/Basic-Types/Ranges/"}],
"quotients-nested-inductives":
[{"id": "quotients-nested-inductives",
"data":
{"title": "Quotients and Inductive Types",
"shortTitle": null,
"sectionNum": "4.5.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Logical Model", "shortTitle": null, "number": "5"},
{"title": "Quotients and Inductive Types",
"shortTitle": null,
"number": "2"}]},
"address": "/The-Type-System/Quotients/"}],
"quotients":
[{"id": "quotients",
"data":
{"title": "Quotients",
"shortTitle": null,
"sectionNum": "4.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-reduction":
[{"id": "quotient-reduction",
"data":
{"title": "Quotient Reduction",
"shortTitle": null,
"sectionNum": "4.5.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Logical Model", "shortTitle": null, "number": "5"},
{"title": "Quotient Reduction", "shortTitle": null, "number": "1"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-proofs":
[{"id": "quotient-proofs",
"data":
{"title": "Proofs About Quotients",
"shortTitle": null,
"sectionNum": "4.5.4.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Quotient API", "shortTitle": null, "number": "4"},
{"title": "Proofs About Quotients",
"shortTitle": null,
"number": "3"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-model":
[{"id": "quotient-model",
"data":
{"title": "Logical Model",
"shortTitle": null,
"sectionNum": "4.5.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Logical Model", "shortTitle": null, "number": "5"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-intro":
[{"id": "quotient-intro",
"data":
{"title": "Introducing Quotients",
"shortTitle": null,
"sectionNum": "4.5.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Quotient API", "shortTitle": null, "number": "4"},
{"title": "Introducing Quotients",
"shortTitle": null,
"number": "1"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-funext":
[{"id": "quotient-funext",
"data":
{"title": "Quotients and Function Extensionality",
"shortTitle": null,
"sectionNum": "4.5.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Quotients and Function Extensionality",
"shortTitle": null,
"number": "6"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-elim":
[{"id": "quotient-elim",
"data":
{"title": "Eliminating Quotients",
"shortTitle": null,
"sectionNum": "4.5.4.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Quotient API", "shortTitle": null, "number": "4"},
{"title": "Eliminating Quotients",
"shortTitle": null,
"number": "2"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-api":
[{"id": "quotient-api",
"data":
{"title": "Quotient API",
"shortTitle": null,
"sectionNum": "4.5.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Quotient API", "shortTitle": null, "number": "4"}]},
"address": "/The-Type-System/Quotients/"}],
"quotient-alternatives":
[{"id": "quotient-alternatives",
"data":
{"title": "Alternatives to Quotient Types",
"shortTitle": null,
"sectionNum": "4.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Quotients", "shortTitle": null, "number": "5"},
{"title": "Alternatives to Quotient Types",
"shortTitle": null,
"number": "1"}]},
"address": "/The-Type-System/Quotients/"}],
"quote-patterns":
[{"id": "quote-patterns",
"data":
{"title": "Matching Syntax",
"shortTitle": null,
"sectionNum": "22.5.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Matching Syntax", "shortTitle": null, "number": "4"}]},
"address": "/Notations-and-Macros/Macros/"}],
"quotation":
[{"id": "quotation",
"data":
{"title": "Quotation",
"shortTitle": null,
"sectionNum": "22.5.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Quotation", "shortTitle": null, "number": "3"}]},
"address": "/Notations-and-Macros/Macros/"}],
"quasiquotation":
[{"id": "quasiquotation",
"data":
{"title": "Quasiquotation",
"shortTitle": null,
"sectionNum": "22.5.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Quotation", "shortTitle": null, "number": "3"},
{"title": "Quasiquotation", "shortTitle": null, "number": "1"}]},
"address": "/Notations-and-Macros/Macros/"}],
"propositions":
[{"id": "propositions",
"data":
{"title": "Propositions",
"shortTitle": null,
"sectionNum": "4.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Propositions", "shortTitle": null, "number": "2"}]},
"address": "/The-Type-System/Propositions/"}],
"propositional-equality":
[{"id": "propositional-equality",
"data":
{"title": "Propositional Equality",
"shortTitle": null,
"sectionNum": "19.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Propositions", "shortTitle": null, "number": "19"},
{"title": "Propositional Equality",
"shortTitle": null,
"number": "4"}]},
"address": "/Basic-Propositions/Propositional-Equality/"}],
"prop-vs-type":
[{"id": "prop-vs-type",
"data":
{"title": "Prop vs Type",
"shortTitle": null,
"sectionNum": "4.4.3.2.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Well-Formedness Requirements",
"shortTitle": null,
"number": "2"},
{"title": "Prop vs Type", "shortTitle": null, "number": "3"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"proof-states":
[{"id": "proof-states",
"data":
{"title": "Reading Proof States",
"shortTitle": null,
"sectionNum": "13.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Reading Proof States",
"shortTitle": null,
"number": "2"}]},
"address": "/Tactic-Proofs/Reading-Proof-States/"}],
"prod-api":
[{"id": "prod-api",
"data":
{"title": "API Reference",
"shortTitle": null,
"sectionNum": "20.13.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Tuples", "shortTitle": null, "number": "13"},
{"title": "Ordered Pairs", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Tuples/"}],
"print-axioms":
[{"id": "print-axioms",
"data":
{"title": "Displaying Axiom Dependencies",
"shortTitle": null,
"sectionNum": "8.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Axioms", "shortTitle": null, "number": "8"},
{"title": "Displaying Axiom Dependencies",
"shortTitle": null,
"number": "5"}]},
"address": "/Axioms/"}],
"precedence":
[{"id": "precedence",
"data":
{"title": "Precedence",
"shortTitle": null,
"sectionNum": "22.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Precedence", "shortTitle": null, "number": "2"}]},
"address": "/Notations-and-Macros/Precedence/"}],
"platforms":
[{"id": "platforms",
"data":
{"title": "Supported Platforms",
"shortTitle": null,
"sectionNum": null,
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Supported Platforms",
"shortTitle": null,
"number": null}]},
"address": "/platforms/"}],
"platform-info":
[{"id": "platform-info",
"data":
{"title": "System and Platform Information",
"shortTitle": null,
"sectionNum": "15.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "System and Platform Information",
"shortTitle": null,
"number": "6"}]},
"address": "/IO/System-and-Platform-Information/"}],
"peano-axioms":
[{"id": "peano-axioms",
"data":
{"title": "Peano Axioms",
"shortTitle": null,
"sectionNum": "20.1.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "Logical Model", "shortTitle": null, "number": "1"},
{"title": "Peano Axioms", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"pattern-matching":
[{"id": "pattern-matching",
"data":
{"title": "Pattern Matching",
"shortTitle": null,
"sectionNum": "10.8.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Terms", "shortTitle": null, "number": "10"},
{"title": "Pattern Matching", "shortTitle": null, "number": "8"}]},
"address": "/Terms/Pattern-Matching/"}],
"pattern-fun":
[{"id": "pattern-fun",
"data":
{"title": "Pattern Matching Functions",
"shortTitle": null,
"sectionNum": "10.8.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Terms", "shortTitle": null, "number": "10"},
{"title": "Pattern Matching", "shortTitle": null, "number": "8"},
{"title": "Pattern Matching Functions",
"shortTitle": null,
"number": "3"}]},
"address": "/Terms/Pattern-Matching/"}],
"partial-unsafe":
[{"id": "partial-unsafe",
"data":
{"title": "Partial and Unsafe Definitions",
"shortTitle": null,
"sectionNum": "7.6.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial and Unsafe Definitions",
"shortTitle": null,
"number": "5"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"partial-functions":
[{"id": "partial-functions",
"data":
{"title": "Partial Functions",
"shortTitle": null,
"sectionNum": "7.6.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial and Unsafe Definitions",
"shortTitle": null,
"number": "5"},
{"title": "Partial Functions", "shortTitle": null, "number": "1"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"partial-fixpoint-theory":
[{"id": "partial-fixpoint-theory",
"data":
{"title": "Theory and Construction",
"shortTitle": null,
"sectionNum": "7.6.4.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial Fixpoint Recursion",
"shortTitle": null,
"number": "4"},
{"title": "Theory and Construction",
"shortTitle": null,
"number": "5"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"partial-fixpoint-tailrec":
[{"id": "partial-fixpoint-tailrec",
"data":
{"title": "Tail-Recursive Functions",
"shortTitle": null,
"sectionNum": "7.6.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial Fixpoint Recursion",
"shortTitle": null,
"number": "4"},
{"title": "Tail-Recursive Functions",
"shortTitle": null,
"number": "1"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"partial-fixpoint-monadic":
[{"id": "partial-fixpoint-monadic",
"data":
{"title": "Monadic functions",
"shortTitle": null,
"sectionNum": "7.6.4.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial Fixpoint Recursion",
"shortTitle": null,
"number": "4"},
{"title": "Monadic functions", "shortTitle": null, "number": "2"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"partial-fixpoint":
[{"id": "partial-fixpoint",
"data":
{"title": "Partial Fixpoint Recursion",
"shortTitle": null,
"sectionNum": "7.6.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial Fixpoint Recursion",
"shortTitle": null,
"number": "4"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"partial-correctness-theorem":
[{"id": "partial-correctness-theorem",
"data":
{"title": "Partial Correctness Theorems",
"shortTitle": null,
"sectionNum": "7.6.4.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial Fixpoint Recursion",
"shortTitle": null,
"number": "4"},
{"title": "Partial Correctness Theorems",
"shortTitle": null,
"number": "3"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"parser":
[{"id": "parser",
"data":
{"title": "Parsing",
"shortTitle": null,
"sectionNum": "2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Elaboration and Compilation",
"shortTitle": null,
"number": "2"},
{"title": "Parsing", "shortTitle": null, "number": "1"}]},
"address": "/Elaboration-and-Compilation/"}],
"parameter-syntax":
[{"id": "parameter-syntax",
"data":
{"title": "Parameters and Types",
"shortTitle": null,
"sectionNum": "7.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Headers and Signatures",
"shortTitle": null,
"number": "2"},
{"title": "Parameters and Types",
"shortTitle": null,
"number": "2"}]},
"address": "/Definitions/Headers-and-Signatures/"}],
"pairs":
[{"id": "pairs",
"data":
{"title": "Ordered Pairs",
"shortTitle": null,
"sectionNum": "20.13.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Tuples", "shortTitle": null, "number": "13"},
{"title": "Ordered Pairs", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Tuples/"}],
"ordinary-coercion":
[{"id": "ordinary-coercion",
"data":
{"title": "Coercing Between Types",
"shortTitle": null,
"sectionNum": "12.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Coercions", "shortTitle": null, "number": "12"},
{"title": "Coercing Between Types",
"shortTitle": null,
"number": "2"}]},
"address": "/Coercions/Coercing-Between-Types/"}],
"option-monad":
[{"id": "option-monad",
"data":
{"title": "Option",
"shortTitle": null,
"sectionNum": "14.5.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Varieties of Monads", "shortTitle": null, "number": "5"},
{"title": "Option", "shortTitle": null, "number": "6"}]},
"address":
"/Functors___-Monads-and--do--Notation/Varieties-of-Monads/"}],
"option":
[{"id": "option",
"data":
{"title": "Optional Values",
"shortTitle": null,
"sectionNum": "20.12.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Optional Values", "shortTitle": null, "number": "12"}]},
"address": "/Basic-Types/Optional-Values/"}],
"operators-and-notations":
[{"id": "operators-and-notations",
"data":
{"title": "Operators and Notations",
"shortTitle": null,
"sectionNum": "22.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Notations", "shortTitle": null, "number": "3"},
{"title": "Operators and Notations",
"shortTitle": null,
"number": "1"}]},
"address": "/Notations-and-Macros/Notations/"}],
"operators":
[{"id": "operators",
"data":
{"title": "Custom Operators",
"shortTitle": null,
"sectionNum": "22.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Custom Operators", "shortTitle": null, "number": "1"}]},
"address": "/Notations-and-Macros/Custom-Operators/"}],
"notations":
[{"id": "notations",
"data":
{"title": "Notations",
"shortTitle": null,
"sectionNum": "22.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Notations", "shortTitle": null, "number": "3"}]},
"address": "/Notations-and-Macros/Notations/"}],
"nested-inductive-types":
[{"id": "nested-inductive-types",
"data":
{"title": "Nested Inductive Types",
"shortTitle": null,
"sectionNum": "4.4.5.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Nested Inductive Types",
"shortTitle": null,
"number": "4"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"nat-syntax":
[{"id": "nat-syntax",
"data":
{"title": "Syntax",
"shortTitle": null,
"sectionNum": "20.1.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "Syntax", "shortTitle": null, "number": "3"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-runtime":
[{"id": "nat-runtime",
"data":
{"title": "Run-Time Representation",
"shortTitle": null,
"sectionNum": "20.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "Run-Time Representation",
"shortTitle": null,
"number": "2"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-performance":
[{"id": "nat-performance",
"data":
{"title": "Performance Notes",
"shortTitle": null,
"sectionNum": "20.1.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "Run-Time Representation",
"shortTitle": null,
"number": "2"},
{"title": "Performance Notes", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-model":
[{"id": "nat-model",
"data":
{"title": "Logical Model",
"shortTitle": null,
"sectionNum": "20.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "Logical Model", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-literals":
[{"id": "nat-literals",
"data":
{"title": "Natural Numbers",
"shortTitle": null,
"sectionNum": "10.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Terms", "shortTitle": null, "number": "10"},
{"title": "Numeric Literals", "shortTitle": null, "number": "5"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"}]},
"address": "/Terms/Numeric-Literals/"}],
"nat-api-predicates":
[{"id": "nat-api-predicates",
"data":
{"title": "Predicates",
"shortTitle": null,
"sectionNum": "20.1.4.5.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Comparisons", "shortTitle": null, "number": "5"},
{"title": "Predicates", "shortTitle": null, "number": "3"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-pow2":
[{"id": "nat-api-pow2",
"data":
{"title": "Powers of Two",
"shortTitle": null,
"sectionNum": "20.1.4.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Powers of Two", "shortTitle": null, "number": "4"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-minmax":
[{"id": "nat-api-minmax",
"data":
{"title": "Minimum and Maximum",
"shortTitle": null,
"sectionNum": "20.1.4.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Minimum and Maximum", "shortTitle": null, "number": "2"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-iteration":
[{"id": "nat-api-iteration",
"data":
{"title": "Iteration",
"shortTitle": null,
"sectionNum": "20.1.4.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Iteration", "shortTitle": null, "number": "6"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-induction":
[{"id": "nat-api-induction",
"data":
{"title": "Alternative Induction Principles",
"shortTitle": null,
"sectionNum": "20.1.4.8.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Elimination", "shortTitle": null, "number": "8"},
{"title": "Alternative Induction Principles",
"shortTitle": null,
"number": "1"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-gcd-lcm":
[{"id": "nat-api-gcd-lcm",
"data":
{"title": "GCD and LCM",
"shortTitle": null,
"sectionNum": "20.1.4.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "GCD and LCM", "shortTitle": null, "number": "3"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-elim":
[{"id": "nat-api-elim",
"data":
{"title": "Elimination",
"shortTitle": null,
"sectionNum": "20.1.4.8.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Elimination", "shortTitle": null, "number": "8"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-deceq":
[{"id": "nat-api-deceq",
"data":
{"title": "Decidable Equality",
"shortTitle": null,
"sectionNum": "20.1.4.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Comparisons", "shortTitle": null, "number": "5"},
{"title": "Decidable Equality", "shortTitle": null, "number": "2"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-conversion":
[{"id": "nat-api-conversion",
"data":
{"title": "Conversion",
"shortTitle": null,
"sectionNum": "20.1.4.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Conversion", "shortTitle": null, "number": "7"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-comparison-bool":
[{"id": "nat-api-comparison-bool",
"data":
{"title": "Boolean Comparisons",
"shortTitle": null,
"sectionNum": "20.1.4.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Comparisons", "shortTitle": null, "number": "5"},
{"title": "Boolean Comparisons", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-comparison":
[{"id": "nat-api-comparison",
"data":
{"title": "Comparisons",
"shortTitle": null,
"sectionNum": "20.1.4.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Comparisons", "shortTitle": null, "number": "5"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-cast":
[{"id": "nat-api-cast",
"data":
{"title": "Coercions from Natural Numbers and Integers",
"shortTitle": null,
"sectionNum": "12.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Coercions", "shortTitle": null, "number": "12"},
{"title": "Coercing Between Types",
"shortTitle": null,
"number": "2"},
{"title": "Coercions from Natural Numbers and Integers",
"shortTitle": null,
"number": "2"}]},
"address": "/Coercions/Coercing-Between-Types/"}],
"nat-api-bitwise":
[{"id": "nat-api-bitwise",
"data":
{"title": "Bitwise Operations",
"shortTitle": null,
"sectionNum": "20.1.4.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Arithmetic", "shortTitle": null, "number": "1"},
{"title": "Bitwise Operations", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api-arithmetic":
[{"id": "nat-api-arithmetic",
"data":
{"title": "Arithmetic",
"shortTitle": null,
"sectionNum": "20.1.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"},
{"title": "Arithmetic", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"nat-api":
[{"id": "nat-api",
"data":
{"title": "API Reference",
"shortTitle": null,
"sectionNum": "20.1.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Natural Numbers", "shortTitle": null, "number": "1"},
{"title": "API Reference", "shortTitle": null, "number": "4"}]},
"address": "/Basic-Types/Natural-Numbers/"}],
"namespaces-sections":
[{"id": "namespaces-sections",
"data":
{"title": "Namespaces and Sections",
"shortTitle": null,
"sectionNum": "6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Namespaces and Sections",
"shortTitle": null,
"number": "6"}]},
"address": "/Namespaces-and-Sections/"}],
"namespaces":
[{"id": "namespaces",
"data":
{"title": "Namespaces",
"shortTitle": null,
"sectionNum": "6.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Namespaces and Sections",
"shortTitle": null,
"number": "6"},
{"title": "Namespaces", "shortTitle": null, "number": "1"}]},
"address": "/Namespaces-and-Sections/"}],
"mvcgen-tactic-tutorial":
[{"id": "mvcgen-tactic-tutorial",
"data":
{"title": "Tutorial: Verifying Imperative Programs Using mvcgen",
"shortTitle": null,
"sectionNum": "18.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The mvcgen tactic", "shortTitle": null, "number": "18"},
{"title": "Tutorial: Verifying Imperative Programs Using mvcgen",
"shortTitle": null,
"number": "6"}]},
"address":
"/The--mvcgen--tactic/Tutorial___-Verifying-Imperative-Programs-Using--mvcgen/"}],
"mvcgen-tactic":
[{"id": "mvcgen-tactic",
"data":
{"title": "The mvcgen tactic",
"shortTitle": null,
"sectionNum": "18.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The mvcgen tactic",
"shortTitle": null,
"number": "18"}]},
"address": "/The--mvcgen--tactic/"}],
"mvcgen-proof-mode":
[{"id": "mvcgen-proof-mode",
"data":
{"title": "Proof Mode",
"shortTitle": null,
"sectionNum": "18.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The mvcgen tactic", "shortTitle": null, "number": "18"},
{"title": "Proof Mode", "shortTitle": null, "number": "5"}]},
"address": "/The--mvcgen--tactic/Proof-Mode/"}],
"mvcgen-adequacy":
[{"id": "mvcgen-adequacy",
"data":
{"title": "Adequacy Lemmas",
"shortTitle": null,
"sectionNum": "18.2.3.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The mvcgen tactic", "shortTitle": null, "number": "18"},
{"title": "Predicate Transformers",
"shortTitle": null,
"number": "2"},
{"title": "Predicate Transformers",
"shortTitle": null,
"number": "3"},
{"title": "Adequacy Lemmas", "shortTitle": null, "number": "3"}]},
"address": "/The--mvcgen--tactic/Predicate-Transformers/"}],
"mutual-well-founded-recursion":
[{"id": "mutual-well-founded-recursion",
"data":
{"title": "Mutual Well-Founded Recursion",
"shortTitle": null,
"sectionNum": "7.6.3.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Well-Founded Recursion",
"shortTitle": null,
"number": "3"},
{"title": "Mutual Well-Founded Recursion",
"shortTitle": null,
"number": "5"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"mutual-syntax":
[{"id": "mutual-syntax",
"data":
{"title": "Mutual Recursion",
"shortTitle": null,
"sectionNum": "7.6.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Mutual Recursion", "shortTitle": null, "number": "1"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"mutual-structural-recursion":
[{"id": "mutual-structural-recursion",
"data":
{"title": "Mutual Structural Recursion",
"shortTitle": null,
"sectionNum": "7.6.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Structural Recursion", "shortTitle": null, "number": "2"},
{"title": "Mutual Structural Recursion",
"shortTitle": null,
"number": "2"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"mutual-partial-fixpoint":
[{"id": "mutual-partial-fixpoint",
"data":
{"title": "Mutual Recursion with Partial Fixpoints",
"shortTitle": null,
"sectionNum": "7.6.4.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Definitions", "shortTitle": null, "number": "7"},
{"title": "Recursive Definitions", "shortTitle": null, "number": "6"},
{"title": "Partial Fixpoint Recursion",
"shortTitle": null,
"number": "4"},
{"title": "Mutual Recursion with Partial Fixpoints",
"shortTitle": null,
"number": "4"}]},
"address": "/Definitions/Recursive-Definitions/"}],
"mutual-inductive-types-same-universe":
[{"id": "mutual-inductive-types-same-universe",
"data":
{"title": "Universe Levels",
"shortTitle": null,
"sectionNum": "4.4.5.1.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Requirements", "shortTitle": null, "number": "1"},
{"title": "Universe Levels", "shortTitle": null, "number": "3"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutual-inductive-types-same-parameters":
[{"id": "mutual-inductive-types-same-parameters",
"data":
{"title": "Parameters Must Match",
"shortTitle": null,
"sectionNum": "4.4.5.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Requirements", "shortTitle": null, "number": "1"},
{"title": "Parameters Must Match",
"shortTitle": null,
"number": "2"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutual-inductive-types-run-time":
[{"id": "mutual-inductive-types-run-time",
"data":
{"title": "Run-Time Representation",
"shortTitle": null,
"sectionNum": "4.4.5.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Run-Time Representation",
"shortTitle": null,
"number": "3"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutual-inductive-types-requirements":
[{"id": "mutual-inductive-types-requirements",
"data":
{"title": "Requirements",
"shortTitle": null,
"sectionNum": "4.4.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Requirements", "shortTitle": null, "number": "1"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutual-inductive-types-recursors":
[{"id": "mutual-inductive-types-recursors",
"data":
{"title": "Recursors",
"shortTitle": null,
"sectionNum": "4.4.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Recursors", "shortTitle": null, "number": "2"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutual-inductive-types-positivity":
[{"id": "mutual-inductive-types-positivity",
"data":
{"title": "Positivity",
"shortTitle": null,
"sectionNum": "4.4.5.1.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Requirements", "shortTitle": null, "number": "1"},
{"title": "Positivity", "shortTitle": null, "number": "4"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutual-inductive-types-dependencies":
[{"id": "mutual-inductive-types-dependencies",
"data":
{"title": "Mutual Dependencies",
"shortTitle": null,
"sectionNum": "4.4.5.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"},
{"title": "Requirements", "shortTitle": null, "number": "1"},
{"title": "Mutual Dependencies", "shortTitle": null, "number": "1"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutual-inductive-types":
[{"id": "mutual-inductive-types",
"data":
{"title": "Mutual Inductive Types",
"shortTitle": null,
"sectionNum": "4.4.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Mutual Inductive Types",
"shortTitle": null,
"number": "5"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"mutable-st-references":
[{"id": "mutable-st-references",
"data":
{"title": "State Transformers",
"shortTitle": null,
"sectionNum": "15.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "Mutable References", "shortTitle": null, "number": "4"},
{"title": "State Transformers", "shortTitle": null, "number": "1"}]},
"address": "/IO/Mutable-References/"}],
"monads-and-do":
[{"id": "monads-and-do",
"data":
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"sectionNum": "14.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"}]},
"address": "/Functors___-Monads-and--do--Notation/"}],
"monad-varieties":
[{"id": "monad-varieties",
"data":
{"title": "Varieties of Monads",
"shortTitle": null,
"sectionNum": "14.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Varieties of Monads", "shortTitle": null, "number": "5"}]},
"address":
"/Functors___-Monads-and--do--Notation/Varieties-of-Monads/"}],
"monad-transformers":
[{"id": "monad-transformers",
"data":
{"title": "Monad Transformers",
"shortTitle": null,
"sectionNum": "14.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Varieties of Monads", "shortTitle": null, "number": "5"},
{"title": "Monad Transformers", "shortTitle": null, "number": "2"}]},
"address":
"/Functors___-Monads-and--do--Notation/Varieties-of-Monads/"}],
"monad-laws":
[{"id": "monad-laws",
"data":
{"title": "Laws",
"shortTitle": null,
"sectionNum": "14.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Laws", "shortTitle": null, "number": "1"}]},
"address": "/Functors___-Monads-and--do--Notation/Laws/"}],
"monad-iteration-syntax":
[{"id": "monad-iteration-syntax",
"data":
{"title": "Iteration",
"shortTitle": null,
"sectionNum": "14.3.2.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Syntax", "shortTitle": null, "number": "3"},
{"title": "do -Notation", "shortTitle": null, "number": "2"},
{"title": "Iteration", "shortTitle": null, "number": "5"}]},
"address": "/Functors___-Monads-and--do--Notation/Syntax/"}],
"module-syntax":
[{"id": "module-syntax",
"data":
{"title": "Concrete Syntax",
"shortTitle": null,
"sectionNum": "5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Concrete Syntax", "shortTitle": null, "number": "2"}]},
"address": "/Source-Files-and-Modules/"}],
"module-structure":
[{"id": "module-structure",
"data":
{"title": "Structure",
"shortTitle": null,
"sectionNum": "5.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Structure", "shortTitle": null, "number": "3"}]},
"address": "/Source-Files-and-Modules/"}],
"module-scopes":
[{"id": "module-scopes",
"data":
{"title": "Modules and Visibility",
"shortTitle": null,
"sectionNum": "5.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Modules and Visibility",
"shortTitle": null,
"number": "4"}]},
"address": "/Source-Files-and-Modules/"}],
"module-headers":
[{"id": "module-headers",
"data":
{"title": "Headers",
"shortTitle": null,
"sectionNum": "5.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Structure", "shortTitle": null, "number": "3"},
{"title": "Headers", "shortTitle": null, "number": "1"}]},
"address": "/Source-Files-and-Modules/"}],
"module-encoding":
[{"id": "module-encoding",
"data":
{"title": "Encoding and Representation",
"shortTitle": null,
"sectionNum": "5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Encoding and Representation",
"shortTitle": null,
"number": "1"}]},
"address": "/Source-Files-and-Modules/"}],
"module-contents":
[{"id": "module-contents",
"data":
{"title": "Elaborated Modules",
"shortTitle": null,
"sectionNum": "5.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Elaborated Modules", "shortTitle": null, "number": "5"}]},
"address": "/Source-Files-and-Modules/"}],
"metavariables-in-proofs":
[{"id": "metavariables-in-proofs",
"data":
{"title": "Metavariables",
"shortTitle": null,
"sectionNum": "13.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Tactic Proofs", "shortTitle": null, "number": "13"},
{"title": "Reading Proof States", "shortTitle": null, "number": "2"},
{"title": "Metavariables", "shortTitle": null, "number": "2"}]},
"address": "/Tactic-Proofs/Reading-Proof-States/"}],
"meta-phase":
[{"id": "meta-phase",
"data":
{"title": "The Meta Phase",
"shortTitle": null,
"sectionNum": "5.4.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Modules and Visibility",
"shortTitle": null,
"number": "4"},
{"title": "The Meta Phase", "shortTitle": null, "number": "1"}]},
"address": "/Source-Files-and-Modules/"}],
"match_pattern-functions":
[{"id": "match_pattern-functions",
"data":
{"title": "Custom Pattern Functions",
"shortTitle": null,
"sectionNum": "10.8.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Terms", "shortTitle": null, "number": "10"},
{"title": "Pattern Matching", "shortTitle": null, "number": "8"},
{"title": "Custom Pattern Functions",
"shortTitle": null,
"number": "2"}]},
"address": "/Terms/Pattern-Matching/"}],
"match-generalization":
[{"id": "match-generalization",
"data":
{"title": "Generalization",
"shortTitle": null,
"sectionNum": "10.8.1.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Terms", "shortTitle": null, "number": "10"},
{"title": "Pattern Matching", "shortTitle": null, "number": "8"},
{"title": "Types", "shortTitle": null, "number": "1"},
{"title": "Generalization", "shortTitle": null, "number": "4"}]},
"address": "/Terms/Pattern-Matching/"}],
"maps":
[{"id": "maps",
"data":
{"title": "Maps and Sets",
"shortTitle": null,
"sectionNum": "20.19.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Maps and Sets", "shortTitle": null, "number": "19"}]},
"address": "/Basic-Types/Maps-and-Sets/"}],
"macros":
[{"id": "macros",
"data":
{"title": "Macros",
"shortTitle": null,
"sectionNum": "22.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro_rules":
[{"id": "macro_rules",
"data":
{"title": "The macro_rules Command",
"shortTitle": null,
"sectionNum": "22.5.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Defining Macros", "shortTitle": null, "number": "5"},
{"title": "The macro_rules Command",
"shortTitle": null,
"number": "1"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-monad-hygiene":
[{"id": "macro-monad-hygiene",
"data":
{"title": "Hygiene-Related Operations",
"shortTitle": null,
"sectionNum": "22.5.2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "The Macro Monad", "shortTitle": null, "number": "2"},
{"title": "Hygiene-Related Operations",
"shortTitle": null,
"number": "2"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-monad":
[{"id": "macro-monad",
"data":
{"title": "The Macro Monad",
"shortTitle": null,
"sectionNum": "22.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "The Macro Monad", "shortTitle": null, "number": "2"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-hygiene":
[{"id": "macro-hygiene",
"data":
{"title": "Hygiene",
"shortTitle": null,
"sectionNum": "22.5.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Hygiene", "shortTitle": null, "number": "1"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-exceptions":
[{"id": "macro-exceptions",
"data":
{"title": "Exceptions and Errors",
"shortTitle": null,
"sectionNum": "22.5.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "The Macro Monad", "shortTitle": null, "number": "2"},
{"title": "Exceptions and Errors",
"shortTitle": null,
"number": "1"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-environment":
[{"id": "macro-environment",
"data":
{"title": "Querying the Environment",
"shortTitle": null,
"sectionNum": "22.5.2.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "The Macro Monad", "shortTitle": null, "number": "2"},
{"title": "Querying the Environment",
"shortTitle": null,
"number": "3"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-command":
[{"id": "macro-command",
"data":
{"title": "The macro Command",
"shortTitle": null,
"sectionNum": "22.5.5.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Defining Macros", "shortTitle": null, "number": "5"},
{"title": "The macro Command", "shortTitle": null, "number": "2"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-attribute":
[{"id": "macro-attribute",
"data":
{"title": "The Macro Attribute",
"shortTitle": null,
"sectionNum": "22.5.5.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros", "shortTitle": null, "number": "22"},
{"title": "Macros", "shortTitle": null, "number": "5"},
{"title": "Defining Macros", "shortTitle": null, "number": "5"},
{"title": "The Macro Attribute", "shortTitle": null, "number": "3"}]},
"address": "/Notations-and-Macros/Macros/"}],
"macro-and-elab":
[{"id": "macro-and-elab",
"data":
{"title": "Macro Expansion and Elaboration",
"shortTitle": null,
"sectionNum": "2.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Elaboration and Compilation",
"shortTitle": null,
"number": "2"},
{"title": "Macro Expansion and Elaboration",
"shortTitle": null,
"number": "2"}]},
"address": "/Elaboration-and-Compilation/"}],
"list-syntax":
[{"id": "list-syntax",
"data":
{"title": "Syntax",
"shortTitle": null,
"sectionNum": "20.15.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Linked Lists", "shortTitle": null, "number": "15"},
{"title": "Syntax", "shortTitle": null, "number": "1"}]},
"address": "/Basic-Types/Linked-Lists/"}],
"list-performance":
[{"id": "list-performance",
"data":
{"title": "Performance Notes",
"shortTitle": null,
"sectionNum": "20.15.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Linked Lists", "shortTitle": null, "number": "15"},
{"title": "Performance Notes", "shortTitle": null, "number": "2"}]},
"address": "/Basic-Types/Linked-Lists/"}],
"list-api-reference":
[{"id": "list-api-reference",
"data":
{"title": "API Reference",
"shortTitle": null,
"sectionNum": "20.15.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Basic Types", "shortTitle": null, "number": "20"},
{"title": "Linked Lists", "shortTitle": null, "number": "15"},
{"title": "API Reference", "shortTitle": null, "number": "3"}]},
"address": "/Basic-Types/Linked-Lists/"}],
"lifting-monads":
[{"id": "lifting-monads",
"data":
{"title": "Lifting Monads",
"shortTitle": null,
"sectionNum": "14.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Lifting Monads", "shortTitle": null, "number": "2"}]},
"address": "/Functors___-Monads-and--do--Notation/Lifting-Monads/"}],
"level-expressions":
[{"id": "level-expressions",
"data":
{"title": "Level Expressions",
"shortTitle": null,
"sectionNum": "4.3.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Universes", "shortTitle": null, "number": "3"},
{"title": "Polymorphism", "shortTitle": null, "number": "2"},
{"title": "Level Expressions", "shortTitle": null, "number": "1"}]},
"address": "/The-Type-System/Universes/"}],
"let-mut":
[{"id": "let-mut",
"data":
{"title": "Local Mutable State",
"shortTitle": null,
"sectionNum": "14.3.2.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Functors, Monads and do -Notation",
"shortTitle": null,
"number": "14"},
{"title": "Syntax", "shortTitle": null, "number": "3"},
{"title": "do -Notation", "shortTitle": null, "number": "2"},
{"title": "Local Mutable State", "shortTitle": null, "number": "3"}]},
"address": "/Functors___-Monads-and--do--Notation/Syntax/"}],
"lean-language-reference":
[{"id": "lean-language-reference",
"data":
{"title": "The Lean Language Reference",
"shortTitle": null,
"sectionNum": "",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null}]},
"address": "//"}],
"language-extension":
[{"id": "language-extension",
"data":
{"title": "Notations and Macros",
"shortTitle": null,
"sectionNum": "22.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Notations and Macros",
"shortTitle": null,
"number": "22"}]},
"address": "/Notations-and-Macros/"}],
"lake-vocab":
[{"id": "lake-vocab",
"data":
{"title": "Concepts and Terminology",
"shortTitle": null,
"sectionNum": "24.1.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Concepts and Terminology",
"shortTitle": null,
"number": "1"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-scripts":
[{"id": "lake-scripts",
"data":
{"title": "Scripts",
"shortTitle": null,
"sectionNum": "24.1.1.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Concepts and Terminology",
"shortTitle": null,
"number": "1"},
{"title": "Scripts", "shortTitle": null, "number": "3"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-github":
[{"id": "lake-github",
"data":
{"title": "GitHub Release Builds",
"shortTitle": null,
"sectionNum": "24.1.1.5.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Concepts and Terminology",
"shortTitle": null,
"number": "1"},
{"title": "GitHub Release Builds",
"shortTitle": null,
"number": "5"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-facets":
[{"id": "lake-facets",
"data":
{"title": "Facets",
"shortTitle": null,
"sectionNum": "24.1.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Concepts and Terminology",
"shortTitle": null,
"number": "1"},
{"title": "Facets", "shortTitle": null, "number": "2"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-environment":
[{"id": "lake-environment",
"data":
{"title": "Environment Variables",
"shortTitle": null,
"sectionNum": "24.1.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Command-Line Interface",
"shortTitle": null,
"number": "2"},
{"title": "Environment Variables",
"shortTitle": null,
"number": "1"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-config-toml":
[{"id": "lake-config-toml",
"data":
{"title": "Declarative TOML Format",
"shortTitle": null,
"sectionNum": "24.1.3.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Configuration File Format",
"shortTitle": null,
"number": "3"},
{"title": "Declarative TOML Format",
"shortTitle": null,
"number": "1"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-config-lean":
[{"id": "lake-config-lean",
"data":
{"title": "Lean Format",
"shortTitle": null,
"sectionNum": "24.1.3.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Configuration File Format",
"shortTitle": null,
"number": "3"},
{"title": "Lean Format", "shortTitle": null, "number": "2"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-config":
[{"id": "lake-config",
"data":
{"title": "Configuration File Format",
"shortTitle": null,
"sectionNum": "24.1.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Configuration File Format",
"shortTitle": null,
"number": "3"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-cli":
[{"id": "lake-cli",
"data":
{"title": "Command-Line Interface",
"shortTitle": null,
"sectionNum": "24.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Command-Line Interface",
"shortTitle": null,
"number": "2"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-cache-remote":
[{"id": "lake-cache-remote",
"data":
{"title": "Remote Artifact Caches",
"shortTitle": null,
"sectionNum": "24.1.1.6.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Concepts and Terminology",
"shortTitle": null,
"number": "1"},
{"title": "Artifact Caches", "shortTitle": null, "number": "6"},
{"title": "Remote Artifact Caches",
"shortTitle": null,
"number": "1"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-cache":
[{"id": "lake-cache",
"data":
{"title": "Artifact Caches",
"shortTitle": null,
"sectionNum": "24.1.1.6.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Concepts and Terminology",
"shortTitle": null,
"number": "1"},
{"title": "Artifact Caches", "shortTitle": null, "number": "6"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake-api":
[{"id": "lake-api",
"data":
{"title": "Script API Reference",
"shortTitle": null,
"sectionNum": "24.1.4.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"},
{"title": "Script API Reference",
"shortTitle": null,
"number": "4"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"lake":
[{"id": "lake",
"data":
{"title": "Lake",
"shortTitle": null,
"sectionNum": "24.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Build Tools and Distribution",
"shortTitle": null,
"number": "24"},
{"title": "Lake", "shortTitle": null, "number": "1"}]},
"address": "/Build-Tools-and-Distribution/Lake/"}],
"keywords-and-identifiers":
[{"id": "keywords-and-identifiers",
"data":
{"title": "Keywords and Identifiers",
"shortTitle": null,
"sectionNum": "5.2.3.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Source Files and Modules",
"shortTitle": null,
"number": "5"},
{"title": "Concrete Syntax", "shortTitle": null, "number": "2"},
{"title": "Keywords and Identifiers",
"shortTitle": null,
"number": "3"}]},
"address": "/Source-Files-and-Modules/"}],
"iterators":
[{"id": "iterators",
"data":
{"title": "Iterators",
"shortTitle": null,
"sectionNum": "21.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Iterators", "shortTitle": null, "number": "21"}]},
"address": "/Iterators/"}],
"iterator-plausibility":
[{"id": "iterator-plausibility",
"data":
{"title": "Plausibility",
"shortTitle": null,
"sectionNum": "21.2.1.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "Iterators", "shortTitle": null, "number": "21"},
{"title": "Iterator Definitions", "shortTitle": null, "number": "2"},
{"title": "Plausibility", "shortTitle": null, "number": "1"}]},
"address": "/Iterators/Iterator-Definitions/"}],
"iota-reduction":
[{"id": "iota-reduction",
"data":
{"title": "Reduction",
"shortTitle": null,
"sectionNum": "4.4.3.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "The Type System", "shortTitle": null, "number": "4"},
{"title": "Inductive Types", "shortTitle": null, "number": "4"},
{"title": "Logical Model", "shortTitle": null, "number": "3"},
{"title": "Recursors", "shortTitle": null, "number": "1"},
{"title": "Reduction", "shortTitle": null, "number": "2"}]},
"address": "/The-Type-System/Inductive-Types/"}],
"io-timing":
[{"id": "io-timing",
"data":
{"title": "Timing",
"shortTitle": null,
"sectionNum": "15.8.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "Timing", "shortTitle": null, "number": "8"}]},
"address": "/IO/Timing/"}],
"io-processes":
[{"id": "io-processes",
"data":
{"title": "Processes",
"shortTitle": null,
"sectionNum": "15.9.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "Processes", "shortTitle": null, "number": "9"}]},
"address": "/IO/Processes/"}],
"io-monad-getenv":
[{"id": "io-monad-getenv",
"data":
{"title": "Environment Variables",
"shortTitle": null,
"sectionNum": "15.7.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "Environment Variables",
"shortTitle": null,
"number": "7"}]},
"address": "/IO/Environment-Variables/"}],
"io-monad-errors":
[{"id": "io-monad-errors",
"data":
{"title": "Errors and Error Handling in IO",
"shortTitle": null,
"sectionNum": "15.1.2.",
"context":
[{"title": "The Lean Language Reference",
"shortTitle": null,
"number": null},
{"title": "IO", "shortTitle": null, "number": "15"},
{"title": "Logical Model", "shortTitle": null, "number": "1"},
{"title": "Errors and Error Handling in IO",
"shortTitle": null,
"number": "2"}]},
"address": "/IO/Logical-Model/"}],
"io-monad-control":
[{"id": "io-monad-control",
"
gitextract_265n7ear/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── book/ │ ├── .gitignore │ ├── .verso/ │ │ ├── verso-xref-manifest.json │ │ └── verso-xref.json │ ├── Main.lean │ ├── TPiL/ │ │ ├── AxiomsComputation.lean │ │ ├── Conv.lean │ │ ├── DependentTypeTheory.lean │ │ ├── Examples.lean │ │ ├── InductionAndRecursion.lean │ │ ├── InductiveTypes.lean │ │ ├── InteractingWithLean.lean │ │ ├── Intro.lean │ │ ├── PropositionsAndProofs.lean │ │ ├── QuantifiersEquality.lean │ │ ├── StructuresAndRecords.lean │ │ ├── Tactics.lean │ │ └── TypeClasses.lean │ ├── TPiL.lean │ ├── lake-manifest.json │ ├── lakefile.toml │ ├── lean-toolchain │ ├── static/ │ │ ├── fonts/ │ │ │ ├── noto-sans-mono/ │ │ │ │ ├── OFL.txt │ │ │ │ └── noto-sans-mono.css │ │ │ ├── source-code-pro/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── OTF/ │ │ │ │ │ ├── SourceCodePro-Black.otf │ │ │ │ │ ├── SourceCodePro-BlackIt.otf │ │ │ │ │ ├── SourceCodePro-Bold.otf │ │ │ │ │ ├── SourceCodePro-BoldIt.otf │ │ │ │ │ ├── SourceCodePro-ExtraLight.otf │ │ │ │ │ ├── SourceCodePro-ExtraLightIt.otf │ │ │ │ │ ├── SourceCodePro-It.otf │ │ │ │ │ ├── SourceCodePro-Light.otf │ │ │ │ │ ├── SourceCodePro-LightIt.otf │ │ │ │ │ ├── SourceCodePro-Medium.otf │ │ │ │ │ ├── SourceCodePro-MediumIt.otf │ │ │ │ │ ├── SourceCodePro-Regular.otf │ │ │ │ │ ├── SourceCodePro-Semibold.otf │ │ │ │ │ └── SourceCodePro-SemiboldIt.otf │ │ │ │ └── source-code-pro.css │ │ │ ├── source-sans/ │ │ │ │ ├── LICENSE.md │ │ │ │ ├── OTF/ │ │ │ │ │ ├── SourceSans3-Black.otf │ │ │ │ │ ├── SourceSans3-BlackIt.otf │ │ │ │ │ ├── SourceSans3-Bold.otf │ │ │ │ │ ├── SourceSans3-BoldIt.otf │ │ │ │ │ ├── SourceSans3-ExtraLight.otf │ │ │ │ │ ├── SourceSans3-ExtraLightIt.otf │ │ │ │ │ ├── SourceSans3-It.otf │ │ │ │ │ ├── SourceSans3-Light.otf │ │ │ │ │ ├── SourceSans3-LightIt.otf │ │ │ │ │ ├── SourceSans3-Medium.otf │ │ │ │ │ ├── SourceSans3-MediumIt.otf │ │ │ │ │ ├── SourceSans3-Regular.otf │ │ │ │ │ ├── SourceSans3-Semibold.otf │ │ │ │ │ └── SourceSans3-SemiboldIt.otf │ │ │ │ ├── VF/ │ │ │ │ │ ├── SourceSans3VF-Italic.otf │ │ │ │ │ └── SourceSans3VF-Upright.otf │ │ │ │ ├── source-sans-3.css │ │ │ │ └── source-sans-3VF.css │ │ │ └── source-serif/ │ │ │ ├── LICENSE.md │ │ │ ├── OTF/ │ │ │ │ ├── SourceSerif4-Black.otf │ │ │ │ ├── SourceSerif4-BlackIt.otf │ │ │ │ ├── SourceSerif4-Bold.otf │ │ │ │ ├── SourceSerif4-BoldIt.otf │ │ │ │ ├── SourceSerif4-ExtraLight.otf │ │ │ │ ├── SourceSerif4-ExtraLightIt.otf │ │ │ │ ├── SourceSerif4-It.otf │ │ │ │ ├── SourceSerif4-Light.otf │ │ │ │ ├── SourceSerif4-LightIt.otf │ │ │ │ ├── SourceSerif4-Regular.otf │ │ │ │ ├── SourceSerif4-Semibold.otf │ │ │ │ └── SourceSerif4-SemiboldIt.otf │ │ │ └── source-serif-text.css │ │ └── theme.css │ └── verso-sources.json ├── examples/ │ ├── .gitignore │ ├── Examples/ │ │ └── Basic.lean │ ├── Examples.lean │ ├── lake-manifest.json │ ├── lakefile.toml │ └── lean-toolchain └── unixode.sty
Condensed preview — 86 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3,080K chars).
[
{
"path": ".github/workflows/ci.yml",
"chars": 3361,
"preview": "name: build and test book content\n\n# Controls when the action will run.\non:\n push:\n branches:\n - master\n pull_"
},
{
"path": ".gitignore",
"chars": 69,
"preview": "*.olean\n/_target\n/leanpkg.path\nout/\n.vs/\n.vscode/\n*/_out/*\n.DS_Store\n"
},
{
"path": ".gitmodules",
"chars": 0,
"preview": ""
},
{
"path": "LICENSE",
"chars": 11357,
"preview": " Apache License\n Version 2.0, January 2004\n "
},
{
"path": "README.md",
"chars": 408,
"preview": "Theorem Proving in Lean 4\n-----------------------\n\nThis repository contains the source code of the book _Theorem Proving"
},
{
"path": "book/.gitignore",
"chars": 7,
"preview": "/.lake\n"
},
{
"path": "book/.verso/verso-xref-manifest.json",
"chars": 219,
"preview": "{\"version\": 0,\n \"sources\":\n {\"manual\":\n {\"updateFrequency\": \"manual\",\n \"shortName\": \"ref\",\n \"root\": \"https://lean-l"
},
{
"path": "book/.verso/verso-xref.json",
"chars": 2182101,
"preview": "{\"manual\":\n {\"Verso.Genre.Manual.section\":\n {\"title\": \"Sections or chapters of the manual\",\n \"description\": \"Sections"
},
{
"path": "book/Main.lean",
"chars": 1033,
"preview": "import VersoManual\nimport TPiL\n\nopen Verso.Genre Manual\nopen Verso Code External\n\nopen Verso.Output.Html in\ndef plausibl"
},
{
"path": "book/TPiL/AxiomsComputation.lean",
"chars": 45553,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre Manual\nopen TPiL\n\n#doc (Manual) \"Axioms and Computation\" =>\n%%"
},
{
"path": "book/TPiL/Conv.lean",
"chars": 6044,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre\nopen Verso.Genre.Manual hiding tactic\nopen TPiL\n\n#doc (Manual)"
},
{
"path": "book/TPiL/DependentTypeTheory.lean",
"chars": 41046,
"preview": "import VersoManual\n\nimport TPiL.Examples\n\nopen TPiL\n\nopen Verso.Genre Manual\n\n#doc (Manual) \"Dependent Type Theory\" =>\n%"
},
{
"path": "book/TPiL/Examples.lean",
"chars": 69305,
"preview": "import SubVerso.Examples\nimport Lean.Data.NameMap\nimport Lean.DocString.Syntax\nimport VersoManual\nimport Verso.Code.High"
},
{
"path": "book/TPiL/InductionAndRecursion.lean",
"chars": 62740,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre\nopen Verso.Genre.Manual hiding tactic\nopen TPiL\n\n#doc (Manual)"
},
{
"path": "book/TPiL/InductiveTypes.lean",
"chars": 61872,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre\nopen Verso.Genre.Manual hiding tactic\nopen TPiL\n\n#doc (Manual)"
},
{
"path": "book/TPiL/InteractingWithLean.lean",
"chars": 41206,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre Manual\nopen TPiL\n\n#doc (Manual) \"Interacting with Lean\" =>\n\nYo"
},
{
"path": "book/TPiL/Intro.lean",
"chars": 8403,
"preview": "import VersoManual\n\nimport TPiL.Examples\n\nopen TPiL\n\nopen Verso.Genre Manual\nopen Verso Code External\n\n#doc (Manual) \"In"
},
{
"path": "book/TPiL/PropositionsAndProofs.lean",
"chars": 37245,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre Manual\nopen TPiL\n\n\n\nset_option pp.rawOnError true\n\n#doc (Manua"
},
{
"path": "book/TPiL/QuantifiersEquality.lean",
"chars": 38733,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre\nopen Verso.Genre.Manual hiding tactic\nopen TPiL\n\n#doc (Manual)"
},
{
"path": "book/TPiL/StructuresAndRecords.lean",
"chars": 9659,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre Manual\nopen TPiL\n\n#doc (Manual) \"Structures and Records\" =>\n%%"
},
{
"path": "book/TPiL/Tactics.lean",
"chars": 53179,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre\nopen Manual hiding tactic\nopen TPiL\n\n#doc (Manual) \"Tactics\" ="
},
{
"path": "book/TPiL/TypeClasses.lean",
"chars": 41143,
"preview": "import VersoManual\nimport TPiL.Examples\n\nopen Verso.Genre\nopen Verso.Genre.Manual hiding tactic\nopen TPiL\n\n#doc (Manual)"
},
{
"path": "book/TPiL.lean",
"chars": 1766,
"preview": "import VersoManual\nimport TPiL.Intro\nimport TPiL.DependentTypeTheory\nimport TPiL.PropositionsAndProofs\nimport TPiL.Quant"
},
{
"path": "book/lake-manifest.json",
"chars": 1325,
"preview": "{\"version\": \"1.1.0\",\n \"packagesDir\": \".lake/packages\",\n \"packages\":\n [{\"url\": \"https://github.com/leanprover/verso.git\","
},
{
"path": "book/lakefile.toml",
"chars": 386,
"preview": "name = \"tpil\"\nversion = \"0.1.0\"\ndefaultTargets = [\"tpil\"]\n\n[[require]]\nname = \"verso\"\ngit = \"https://github.com/leanprov"
},
{
"path": "book/lean-toolchain",
"chars": 29,
"preview": "leanprover/lean4:v4.27.0-rc1\n"
},
{
"path": "book/static/fonts/noto-sans-mono/OFL.txt",
"chars": 4489,
"preview": "Copyright 2022 The Noto Project Authors (https://github.com/notofonts/latin-greek-cyrillic)\r\n\r\nThis Font Software is lic"
},
{
"path": "book/static/fonts/noto-sans-mono/noto-sans-mono.css",
"chars": 496,
"preview": "@font-face {\n font-family: 'Noto Sans Mono';\n font-style: normal;\n font-display: swap;\n font-weight: 100 900;\n src:"
},
{
"path": "book/static/fonts/source-code-pro/LICENSE.md",
"chars": 4565,
"preview": "© 2023 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Ad"
},
{
"path": "book/static/fonts/source-code-pro/source-code-pro.css",
"chars": 5735,
"preview": "@font-face{\n font-family: 'Source Code Pro';\n font-weight: 200;\n font-style: normal;\n font-stretch: normal;\n"
},
{
"path": "book/static/fonts/source-sans/LICENSE.md",
"chars": 4486,
"preview": "Copyright 2010-2024 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a tr"
},
{
"path": "book/static/fonts/source-sans/source-sans-3.css",
"chars": 3165,
"preview": "@font-face{\n font-family: 'Source Sans 3';\n font-weight: 200;\n font-style: normal;\n font-stretch: normal;\n "
},
{
"path": "book/static/fonts/source-sans/source-sans-3VF.css",
"chars": 738,
"preview": "@font-face{\n font-family: 'Source Sans 3 VF';\n font-weight: 200 900;\n font-style: normal;\n font-stretch: nor"
},
{
"path": "book/static/fonts/source-serif/LICENSE.md",
"chars": 4487,
"preview": "Copyright 2014 - 2023 Adobe (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a "
},
{
"path": "book/static/fonts/source-serif/source-serif-text.css",
"chars": 5119,
"preview": "@font-face{\n font-family: 'Source Serif';\n font-weight: 200;\n font-display: swap;\n font-style: normal;\n f"
},
{
"path": "book/static/theme.css",
"chars": 1981,
"preview": ":root {\n --verso-structure-font-family: \"Source Sans 3\",\"Helvetica Neue\",\"Segoe UI\",\"Roboto\",Arial,sans-serif;\n --"
},
{
"path": "book/verso-sources.json",
"chars": 265,
"preview": "{\n \"version\": 0,\n \"sources\": {\n \"manual\": {\n \"root\": \"https://lean-lang.org/doc/reference/4.26.0"
},
{
"path": "examples/.gitignore",
"chars": 39,
"preview": "/.lake\nExamples/*.json\nExamples/*.lean\n"
},
{
"path": "examples/Examples/Basic.lean",
"chars": 21,
"preview": "def hello := \"world\"\n"
},
{
"path": "examples/Examples.lean",
"chars": 421,
"preview": "-- This module serves as the root of the `Examples` library.\n-- Import modules here that should be built as part of the "
},
{
"path": "examples/lake-manifest.json",
"chars": 426,
"preview": "{\"version\": \"1.1.0\",\n \"packagesDir\": \".lake/packages\",\n \"packages\":\n [{\"url\": \"https://github.com/leanprover/subverso.gi"
},
{
"path": "examples/lakefile.toml",
"chars": 198,
"preview": "name = \"tpil-examples\"\nversion = \"0.1.0\"\ndefaultTargets = [\"Examples\"]\n\n[[require]]\nname = \"subverso\"\ngit = \"https://git"
},
{
"path": "examples/lean-toolchain",
"chars": 25,
"preview": "leanprover/lean4:v4.26.0\n"
},
{
"path": "unixode.sty",
"chars": 6006,
"preview": "% ------------------------------------------------------------------------------\n% (C) 2012-2013 Olivier Verdier <olivie"
}
]
// ... and 42 more files (download for full content)
About this extraction
This page contains the full source code of the leanprover/theorem_proving_in_lean4 GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 86 files (2.6 MB), approximately 693.3k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.