Returns the number of [`Use`]s in this list.
(self)
| 415 | |
| 416 | /// Returns the number of [`Use`]s in this list. |
| 417 | pub fn len(self) -> usize { |
| 418 | self.indices().len() |
| 419 | } |
| 420 | |
| 421 | /// Returns a [`UseIndex`] pointing to a single [`Use`] in this list. |
| 422 | pub fn index(self, index: usize) -> UseIndex { |
no test coverage detected