(&self)
| 56 | |
| 57 | #[inline(always)] |
| 58 | pub(crate) fn last(&self) -> &T { |
| 59 | self.data.last().unwrap_or_else(|| { |
| 60 | cold_path(); |
| 61 | unreachable!("ValueStack underflow, this is a bug"); |
| 62 | }) |
| 63 | } |
| 64 | |
| 65 | #[inline(always)] |
| 66 | pub(crate) fn get(&self, index: usize) -> &T { |
no outgoing calls