Return the number of alias regions in the set.
(&self)
| 554 | |
| 555 | /// Return the number of alias regions in the set. |
| 556 | pub fn len(&self) -> usize { |
| 557 | self.alias_regions.len() |
| 558 | } |
| 559 | |
| 560 | /// Iterate over all alias regions and their data. |
| 561 | pub fn iter(&self) -> impl Iterator<Item = (AliasRegion, &AliasRegionData)> { |