Returns all of the [`CatalogItemId`]s in this set.
(&self)
| 2332 | |
| 2333 | /// Returns all of the [`CatalogItemId`]s in this set. |
| 2334 | pub fn items(&self) -> impl Iterator<Item = &CatalogItemId> { |
| 2335 | self.entries.keys() |
| 2336 | } |
| 2337 | |
| 2338 | /// Returns if this set of IDs contains the provided [`CatalogItemId`]. |
| 2339 | pub fn contains_item(&self, item: &CatalogItemId) -> bool { |