You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/reference/features-classification.md
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -174,7 +174,6 @@ by itself a straightforward implementation of some simple macros and is at the s
174
174
-[Quotes and Splices](metaprogramming/macros.md) provide a principled way to express macros and staging with a unified set of abstractions.
175
175
-[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.
176
176
-[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.
Copy file name to clipboardExpand all lines: docs/docs/reference/metaprogramming/toc.md
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -31,18 +31,14 @@ introduce the following fundamental facilities:
31
31
stages. Consequently, this method generative programming is called "Multi-Stage Programming". Staging is built on the same foundations as macros. It uses
32
32
quotes and splices, but leaves out `inline`.
33
33
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"
39
35
representation of code. They can be parameterized and composed using
40
36
splices but their structure cannot be analyzed from the outside. Tasty
41
37
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
42
38
type is a form of typed abstract syntax tree, which gives rise to the "TASTy`
43
39
moniker.
44
40
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
46
42
in a custom compressed binary format in `.tasty` files. TASTy inspection allows
47
43
to load these files and analyze their content's tree structure.
Copy file name to clipboardExpand all lines: docs/docs/reference/overview.md
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,6 @@ by itself a straightforward implementation of some simple macros and is at the s
124
124
-[Quotes and Splices](metaprogramming/macros.md) provide a principled way to express macros and staging with a unified set of abstractions.
125
125
-[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.
126
126
-[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.
0 commit comments