| 102 | |
| 103 | #[derive(Copy, Clone)] |
| 104 | pub struct DictionaryRef<'a> { |
| 105 | pub local: &'a Dictionary, |
| 106 | pub global: &'a Dictionary, |
| 107 | } |
| 108 | |
| 109 | impl<'a> DictionaryRef<'a> { |
| 110 | pub fn choose<R: Rng>(&self, rng: &mut R) -> (&'a [u8], u8) { |
nothing calls this directly
no outgoing calls
no test coverage detected