Returns true if the collection has no items.
(&self)
| 144 | |
| 145 | /// Returns true if the collection has no items. |
| 146 | pub fn is_empty(&self) -> bool { |
| 147 | self.node.is_empty() |
| 148 | } |
| 149 | |
| 150 | /// Returns a streaming iterator. |
| 151 | pub fn iter(&self) -> Result<impl Iterator<Item = Result<T>> + 'a> { |
no outgoing calls
no test coverage detected