(&self, other: &Self)
| 265 | |
| 266 | impl<'gc, T: PartialOrd + ?Sized + 'gc> PartialOrd for Gc<'gc, T> { |
| 267 | fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> { |
| 268 | (**self).partial_cmp(other) |
| 269 | } |
| 270 | |
| 271 | fn le(&self, other: &Self) -> bool { |
| 272 | (**self).le(other) |