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: src/appendix/glossary.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ CTFE <div id="ctfe"/> | Short for Compile-Time Function Eval
15
15
cx <divid="cx"/> | We tend to use "cx" as an abbreviation for context. See also `tcx`, `infcx`, etc.
16
16
DAG <divid="dag"/> | A directed acyclic graph is used during compilation to keep track of dependencies between queries. ([see more](../queries/incremental-compilation.html))
17
17
data-flow analysis <divid="data-flow"/> | A static analysis that figures out what properties are true at each point in the control-flow of a program; see [the background chapter for more](./background.html#dataflow).
18
-
DeBruijn Index <divid="debruijn"> | A technique for describing which binder a variable is bound by using only integers. It has the benefit that it is invariant under variable renaming. ([see more](./background.md#debruijn))
18
+
DeBruijn Index <divid="debruijn"> | A technique for describing which binder a variable is bound by using only integers. It has the benefit that it is invariant under variable renaming. ([see more](./background.md#what-is-a-debruijn-index))
19
19
DefId <divid="def-id"/> | An index identifying a definition (see `librustc_middle/hir/def_id.rs`). Uniquely identifies a `DefPath`. See [the HIR chapter for more](../hir.html#identifiers-in-the-hir).
20
20
Discriminant <divid="discriminant"/> | The underlying value associated with an enum variant or generator state to indicate it as "active" (but not to be confused with its ["variant index"](#variant-idx)). At runtime, the discriminant of the active variant is encoded in the [tag](#tag).
21
21
Double pointer <divid="double-ptr"/> | A pointer with additional metadata. See "fat pointer" for more.
0 commit comments