Skip to content

Commit 1c713ad

Browse files
committed
Unlink erased docs
1 parent 127f346 commit 1c713ad

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

docs/docs/reference/features-classification.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ by itself a straightforward implementation of some simple macros and is at the s
174174
- [Quotes and Splices](metaprogramming/macros.md) provide a principled way to express macros and staging with a unified set of abstractions.
175175
- [Typeclass derivation](contextual/derivation.md) provides an in-language implementation of the `Gen` macro in Shapeless and other foundational libraries. The new implementation is more robust, efficient and easier to use than the macro.
176176
- [Implicit by-name parameters](contextual/implicit-by-name-parameters.md) provide a more robust in-language implementation of the `Lazy` macro in Shapeless.
177-
- [Erased Terms](metaprogramming/erased-terms.md) provide a general mechanism for compile-time-only computations.
178177

179178
**Status: not yet settled**
180179

docs/docs/reference/metaprogramming/toc.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,14 @@ introduce the following fundamental facilities:
3131
stages. Consequently, this method generative programming is called "Multi-Stage Programming". Staging is built on the same foundations as macros. It uses
3232
quotes and splices, but leaves out `inline`.
3333

34-
4. [Erased Terms](./erased-terms.md) Erased terms are used to enforce
35-
guarantees about program constraints. As `erased` terms are guaranteed not to
36-
be used in computations, they will not appear at the generated code.
37-
38-
5. [TASTy Reflection](./tasty-reflect.md) Quotations are a "black-box"
34+
4. [TASTy Reflection](./tasty-reflect.md) Quotations are a "black-box"
3935
representation of code. They can be parameterized and composed using
4036
splices but their structure cannot be analyzed from the outside. Tasty
4137
reflection gives a way to analyze code structure by partly revealing the representation type of a piece of code in a standard API. The representation
4238
type is a form of typed abstract syntax tree, which gives rise to the "TASTy`
4339
moniker.
4440

45-
6. [TASTy Inspection](./tasty-inspect.md) Typed abstract syntax trees are serialized
41+
5. [TASTy Inspection](./tasty-inspect.md) Typed abstract syntax trees are serialized
4642
in a custom compressed binary format in `.tasty` files. TASTy inspection allows
4743
to load these files and analyze their content's tree structure.
4844

docs/docs/reference/overview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ by itself a straightforward implementation of some simple macros and is at the s
124124
- [Quotes and Splices](metaprogramming/macros.md) provide a principled way to express macros and staging with a unified set of abstractions.
125125
- [Typeclass derivation](contextual/derivation.md) provides an in-language implementation of the `Gen` macro in Shapeless and other foundational libraries. The new implementation is more robust, efficient and easier to use than the macro.
126126
- [Implicit by-name parameters](contextual/implicit-by-name-parameters.md) provide a more robust in-language implementation of the `Lazy` macro in Shapeless.
127-
- [Erased Terms](metaprogramming/erased-terms.md) provide a general mechanism for compile-time-only computations.
128127

129128
## See Also
130129

docs/sidebar.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ sidebar:
7777
url: docs/reference/metaprogramming/macros.html
7878
- title: Staging
7979
url: docs/reference/metaprogramming/staging.html
80-
- title: Erased Terms
81-
url: docs/reference/metaprogramming/erased-terms.html
8280
- title: TASTy Reflection
8381
url: docs/reference/metaprogramming/tasty-reflect.html
8482
- title: TASTy Inspection

0 commit comments

Comments
 (0)