()
| 6 | impl SummaryRanges { |
| 7 | |
| 8 | fn new() -> Self { |
| 9 | SummaryRanges { |
| 10 | set: std::collections::BTreeSet::new(), |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | fn add_num(&mut self, val: i32) { |
| 15 | let mut new = (val, val); |
nothing calls this directly
no outgoing calls
no test coverage detected