Returns `true` if this set already contains a region with the given `user_id`.
(&self, user_id: u32)
| 544 | /// Returns `true` if this set already contains a region with the given |
| 545 | /// `user_id`. |
| 546 | pub fn contains(&self, user_id: u32) -> bool { |
| 547 | self.dedupe_map.contains_key(&user_id) |
| 548 | } |
| 549 | |
| 550 | /// Returns `true` if the given alias region reference is valid. |
| 551 | pub fn is_valid(&self, ar: AliasRegion) -> bool { |
no test coverage detected