mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
Add a comment explaining the return type of Ty::kind
.
This commit is contained in:
parent
13a52890dd
commit
99aad72af5
@ -970,6 +970,10 @@ impl<'tcx> rustc_type_ir::inherent::Ty<TyCtxt<'tcx>> for Ty<'tcx> {
|
|||||||
|
|
||||||
/// Type utilities
|
/// Type utilities
|
||||||
impl<'tcx> Ty<'tcx> {
|
impl<'tcx> Ty<'tcx> {
|
||||||
|
// It would be nicer if this returned the value instead of a reference,
|
||||||
|
// like how `Predicate::kind` and `Region::kind` do. (It would result in
|
||||||
|
// many fewer subsequent dereferences.) But that gives a small but
|
||||||
|
// noticeable performance hit. See #126069 for details.
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn kind(self) -> &'tcx TyKind<'tcx> {
|
pub fn kind(self) -> &'tcx TyKind<'tcx> {
|
||||||
self.0.0
|
self.0.0
|
||||||
|
Loading…
Reference in New Issue
Block a user