Total number of posting entries across all dimensions.
(&self)
| 132 | |
| 133 | /// Total number of posting entries across all dimensions. |
| 134 | pub fn total_postings(&self) -> usize { |
| 135 | self.postings.values().map(|v| v.len()).sum() |
| 136 | } |
| 137 | |
| 138 | /// Whether the index is empty. |
| 139 | pub fn is_empty(&self) -> bool { |