Get a mutable reference to the inner stack representation.
(&mut self)
| 458 | |
| 459 | /// Get a mutable reference to the inner stack representation. |
| 460 | pub fn inner_mut(&mut self) -> &mut SmallVec<[Val; 64]> { |
| 461 | &mut self.inner |
| 462 | } |
| 463 | |
| 464 | /// Get a reference to the inner stack representation. |
| 465 | pub fn inner(&self) -> &SmallVec<[Val; 64]> { |
no outgoing calls
no test coverage detected