Retrieve an immutable reference to the polynomial contained in `self`.
(&self)
| 146 | |
| 147 | /// Retrieve an immutable reference to the polynomial contained in `self`. |
| 148 | pub fn polynomial(&self) -> &P { |
| 149 | &self.polynomial |
| 150 | } |
| 151 | /// Retrieve a mutable reference to the polynomial contained in `self` |
| 152 | pub fn polynomial_mut(&mut self) -> &mut P { |
| 153 | &mut self.polynomial |
no outgoing calls
no test coverage detected