Returns an iterator that iterates over the items in this queue in FIFO order
(&self)
| 33 | |
| 34 | /// Returns an iterator that iterates over the items in this queue in FIFO order |
| 35 | pub fn iter(&self) -> Iter<'_, T> { |
| 36 | self.ll.iter() |
| 37 | } |
| 38 | |
| 39 | /// Returns the number of items in this queue |
| 40 | pub fn len(&self) -> usize { |
nothing calls this directly
no outgoing calls
no test coverage detected