Return a slice of the registers storing this value.
(&self)
| 100 | |
| 101 | /// Return a slice of the registers storing this value. |
| 102 | pub fn regs(&self) -> &[R] { |
| 103 | &self.parts[0..self.len()] |
| 104 | } |
| 105 | |
| 106 | /// Return a mutable slice of the registers storing this value. |
| 107 | pub fn regs_mut(&mut self) -> &mut [R] { |
no test coverage detected