1
1
# Generic arguments
2
- A ` ty::subst:: GenericArg<'tcx> ` represents some entity in the type system: a type
2
+ A ` ty::GenericArg<'tcx> ` represents some entity in the type system: a type
3
3
(` Ty<'tcx> ` ), lifetime (` ty::Region<'tcx> ` ) or constant (` ty::Const<'tcx> ` ).
4
- ` GenericArg ` is used to perform substitutions of generic parameters for concrete
4
+ ` GenericArg ` is used to perform instantiation of generic parameters to concrete
5
5
arguments, such as when calling a function with generic parameters explicitly
6
- with type arguments. Substitutions are represented using the
7
- [ ` Subst ` type] ( #subst ) as described below.
6
+ with type arguments. Instantiations are represented using the
7
+ [ ` GenericArgs ` type] ( #genericargs ) as described below.
8
8
9
- ## ` Subst `
10
- ` ty::subst::Subst <'tcx> ` is intuitively simply a slice of ` GenericArg<'tcx> ` s,
11
- acting as an ordered list of substitutions from generic parameters to
9
+ ## ` GenericArgs `
10
+ ` ty::GenericArgs <'tcx> ` is intuitively simply a slice of ` GenericArg<'tcx> ` s,
11
+ acting as an ordered list of generic parameters instantiated to
12
12
concrete arguments (such as types, lifetimes and consts).
13
13
14
14
For example, given a ` HashMap<K, V> ` with two type parameters, ` K ` and ` V ` , an
15
15
instantiation of the parameters, for example ` HashMap<i32, u32> ` , would be
16
- represented by the substitution ` &'tcx [tcx.types.i32, tcx.types.u32] ` .
16
+ represented by ` &'tcx [tcx.types.i32, tcx.types.u32] ` .
17
17
18
- ` Subst ` provides various convenience methods to instantiate substitutions
18
+ ` GenericArgs ` provides various convenience methods to instantiate generic arguments
19
19
given item definitions, which should generally be used rather than explicitly
20
- constructing such substitution slices.
20
+ instantiating such slices.
21
21
22
22
## ` GenericArg `
23
23
The actual ` GenericArg ` struct is optimised for space, storing the type, lifetime or
24
24
const as an interned pointer containing a tag identifying its kind (in the
25
- lowest 2 bits). Unless you are working with the ` Subst ` implementation
25
+ lowest 2 bits). Unless you are working with the ` GenericArgs ` implementation
26
26
specifically, you should generally not have to deal with ` GenericArg ` and instead
27
27
make use of the safe [ ` GenericArgKind ` ] ( #genericargkind ) abstraction.
28
28
29
29
## ` GenericArgKind `
30
30
As ` GenericArg ` itself is not type-safe, the ` GenericArgKind ` enum provides a more
31
31
convenient and safe interface for dealing with generic arguments. An
32
32
` GenericArgKind ` can be converted to a raw ` GenericArg ` using ` GenericArg::from() `
33
- (or simply ` .into() ` when the context is clear). As mentioned earlier, substitution
33
+ (or simply ` .into() ` when the context is clear). As mentioned earlier, instantiation
34
34
lists store raw ` GenericArg ` s, so before dealing with them, it is preferable to
35
35
convert them to ` GenericArgKind ` s first. This is done by calling the ` .unpack() `
36
36
method.
@@ -44,7 +44,7 @@ fn deal_with_generic_arg<'tcx>(generic_arg: GenericArg<'tcx>) -> GenericArg<'tcx
44
44
GenericArgKind::Lifetime(lt) => { /* ... */ }
45
45
GenericArgKind::Const(ct) => { /* ... */ }
46
46
};
47
- // Pack the `GenericArgKind` to store it in a substitution list.
47
+ // Pack the `GenericArgKind` to store it in a generic args list.
48
48
new_generic_arg.into()
49
49
}
50
50
```
0 commit comments