rust/compiler
Nicholas Nethercote 925ec0d3c7 Overhaul PredicateInner and Predicate.
Specifically, change `Ty` from this:
```
pub struct Predicate<'tcx> { inner: &'tcx PredicateInner<'tcx> }
```
to this:
```
pub struct Predicate<'tcx>(&'tcx Interned<PredicateS<'tcx>>)
```
where `PredicateInner` is renamed as `PredicateS`.

 This (plus a few other minor changes) makes the parallels with `Ty` and
`TyS` much clearer, and makes the uniqueness more explicit.
2022-02-15 16:03:26 +11:00
..
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00
2022-02-13 11:49:52 +01:00
2022-02-15 16:03:24 +11:00
2022-02-13 11:49:52 +01:00
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00
2022-02-12 11:23:53 +00:00
2022-02-12 11:23:53 +00:00
2022-02-15 16:03:24 +11:00
2022-02-15 16:03:24 +11:00