(&self)
| 133 | /// ``` |
| 134 | #[inline] |
| 135 | pub fn len(&self) -> usize { |
| 136 | self.elems.iter().map(|sub| usize::from(sub.len())).sum() |
| 137 | } |
| 138 | |
| 139 | /// Get `n + 1` where `n` is the largest value that can be stored inside |
| 140 | /// this set without growing the backing storage. |