(&self)
| 337 | /// Returns the dictionary if any |
| 338 | #[inline] |
| 339 | pub fn dictionary(&self) -> Option<&Self> { |
| 340 | // Safety: |
| 341 | // If dictionary is not null should be valid for reads of `Self` |
| 342 | unsafe { self.dictionary.as_ref() } |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | #[cfg(test)] |