Skip to content

Commit 6b98218

Browse files
authored
Merge pull request #2265 from BoxyUwU/typing_env
Update `ParamEnv` section for `TypingEnv` changes
2 parents c95537b + b5522c1 commit 6b98218

10 files changed

+211
-211
lines changed

src/SUMMARY.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,7 @@
146146
- [ADTs and Generic Arguments](./ty_module/generic_arguments.md)
147147
- [Parameter types/consts/regions](./ty_module/param_ty_const_regions.md)
148148
- [`TypeFolder` and `TypeFoldable`](./ty-fold.md)
149-
- [Parameter Environments](./param_env/param_env_summary.md)
150-
- [What is it?](./param_env/param_env_what_is_it.md)
151-
- [How are `ParamEnv`'s constructed internally](./param_env/param_env_construction_internals.md)
152-
- [Which `ParamEnv` do I use?](./param_env/param_env_acquisition.md)
149+
- [Typing/Param Envs](./typing_parameter_envs.md)
153150
- [Type inference](./type-inference.md)
154151
- [Trait solving](./traits/resolution.md)
155152
- [Higher-ranked trait bounds](./traits/hrtb.md)

src/appendix/code-index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ Item | Kind | Short description | Chapter |
4040
[Emitting Diagnostics]: ../diagnostics.html
4141
[Macro expansion]: ../macro-expansion.html
4242
[Name resolution]: ../name-resolution.html
43-
[Parameter Environment]: ../param_env/param_env_summary.html
43+
[Parameter Environment]: ../typing_parameter_envs.html
4444
[Trait Solving: Goals and Clauses]: ../traits/goals-and-clauses.html#domain-goals

src/const-eval.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ They're the wrappers of the `const_eval` query.
3535
Statics are special; all other functions do not represent statics correctly
3636
and have thus assertions preventing their use on statics.
3737

38-
The `const_eval_*` functions use a [`ParamEnv`](./param_env/param_env_summary.html) of environment
38+
The `const_eval_*` functions use a [`ParamEnv`](./typing_parameter_envs.html) of environment
3939
in which the constant is evaluated (e.g. the function within which the constant is used)
4040
and a [`GlobalId`]. The `GlobalId` is made up of an `Instance` referring to a constant
4141
or static or of an `Instance` of a function and an index into the function's `Promoted` table.

src/param_env/param_env_acquisition.md

-43
This file was deleted.

src/param_env/param_env_construction_internals.md

-83
This file was deleted.

src/param_env/param_env_summary.md

-18
This file was deleted.

src/param_env/param_env_what_is_it.md

-59
This file was deleted.

src/traits/caching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ to be pretty clearly safe and also still retains a very high hit rate
6161
**TODO**: it looks like `pick_candidate_cache` no longer exists. In
6262
general, is this section still accurate at all?
6363

64-
[`ParamEnv`]: ../param_env/param_env_summary.html
64+
[`ParamEnv`]: ../typing_parameter_envs.html
6565
[`tcx`]: ../ty.html
6666
[#18290]: https://github.com/rust-lang/rust/issues/18290
6767
[#22019]: https://github.com/rust-lang/rust/issues/22019

src/traits/resolution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ in that list. If so, it is considered satisfied. More precisely, we
183183
want to check whether there is a where-clause obligation that is for
184184
the same trait (or some subtrait) and which can match against the obligation.
185185

186-
[parameter environment]: ../param_env/param_env_summary.html
186+
[parameter environment]: ../typing_parameter_envs.html
187187

188188
Consider this simple example:
189189

0 commit comments

Comments
 (0)