()
| 444 | |
| 445 | impl CoverageQueue { |
| 446 | pub fn new() -> Self { |
| 447 | Self { queue: VecDeque::new(), new: BinaryHeap::new(), cycles: 0, found_input_at_cycle: 0 } |
| 448 | } |
| 449 | |
| 450 | pub fn new_inputs(&self) -> usize { |
| 451 | self.new.len() |
nothing calls this directly
no outgoing calls
no test coverage detected