Returns `true` if the store holds no documents.
(&self)
| 92 | |
| 93 | /// Returns `true` if the store holds no documents. |
| 94 | pub fn is_empty(&self) -> bool { |
| 95 | self.docs.is_empty() |
| 96 | } |
| 97 | |
| 98 | /// Iterate over all stored documents (order unspecified). |
| 99 | pub fn iter(&self) -> impl Iterator<Item = &MultiVectorDoc> { |
no outgoing calls
no test coverage detected