| 162 | ]; |
| 163 | |
| 164 | pub trait InputSource { |
| 165 | fn count(&self) -> usize; |
| 166 | fn choose_random<R: Rng>(&self, rng: &mut R) -> &MultiStream; |
| 167 | } |
| 168 | |
| 169 | impl InputSource for CorpusStore<MultiStream> { |
| 170 | fn count(&self) -> usize { |
nothing calls this directly
no outgoing calls
no test coverage detected