Returns true if this priority queue is empty
(&self)
| 63 | |
| 64 | /// Returns true if this priority queue is empty |
| 65 | pub fn is_empty(&self) -> bool { |
| 66 | self.n == 0 |
| 67 | } |
| 68 | |
| 69 | /// Returns the number of keys on this priority queue |
| 70 | pub fn len(&self) -> usize { |
nothing calls this directly
no outgoing calls
no test coverage detected