(&mut self, val: T)
| 275 | #[track_caller] |
| 276 | #[inline(always)] |
| 277 | fn push_in_cap(&mut self, val: T) { |
| 278 | debug_assert!(self.capacity() != self.len()); |
| 279 | if self.capacity() != self.len() { |
| 280 | self.push(val); |
| 281 | } |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | /// Rust is too conservative about sorting floats. |
no test coverage detected