Returns the number of entries in the queue.
(&self)
| 193 | |
| 194 | /// Returns the number of entries in the queue. |
| 195 | pub fn len(&self) -> usize { |
| 196 | self.data.len() |
| 197 | } |
| 198 | |
| 199 | /// Checks whether the queue has no items. |
| 200 | pub fn is_empty(&self) -> bool { |
no outgoing calls
no test coverage detected