rust/compiler/rustc_traits
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
..
src Overhaul PredicateInner and Predicate. 2022-02-15 16:03:26 +11:00
Cargo.toml ⬆ chalk to 0.76.0 2022-01-19 13:44:43 -06:00