Iterate over all stored documents (order unspecified).
(&self)
| 97 | |
| 98 | /// Iterate over all stored documents (order unspecified). |
| 99 | pub fn iter(&self) -> impl Iterator<Item = &MultiVectorDoc> { |
| 100 | self.docs.values() |
| 101 | } |
| 102 | |
| 103 | /// Returns `Some(k)` for `MetaToken` mode; `None` for `PerToken`. |
| 104 | pub fn k(&self) -> Option<u8> { |
no outgoing calls