()
| 10 | impl SmallestInfiniteSet { |
| 11 | |
| 12 | fn new() -> Self { |
| 13 | SmallestInfiniteSet { |
| 14 | set: (1..=1000).collect() |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | fn pop_smallest(&mut self) -> i32 { |
| 19 | let mut ret = -1; |
nothing calls this directly
no outgoing calls
no test coverage detected