diff options
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -127,6 +127,12 @@ where self.capacity } + /// Returns whether this `MultiVec` is empty. + pub fn is_empty(&self) -> bool + { + self.length == 0 + } + fn grow_amortized(&mut self, additional: usize) { let required_cap = self.capacity.checked_add(additional).unwrap(); |