Total number of entries in the tree.
(&self)
| 61 | |
| 62 | /// Total number of entries in the tree. |
| 63 | pub fn count(&self) -> u32 { |
| 64 | self.nodes[self.root as usize].count |
| 65 | } |
| 66 | |
| 67 | /// Insert a new entry. If the primary key already exists, updates its sort key. |
| 68 | /// |
no outgoing calls