Whether this collection has zero secondary indexes (fast path eligible).
(&self)
| 255 | |
| 256 | /// Whether this collection has zero secondary indexes (fast path eligible). |
| 257 | pub fn is_empty(&self) -> bool { |
| 258 | self.indexes.is_empty() && self.composite_indexes.is_empty() |
| 259 | } |
| 260 | |
| 261 | /// Number of active indexes (single + composite). |
| 262 | pub fn index_count(&self) -> usize { |
no outgoing calls
no test coverage detected