diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -279,6 +279,12 @@ impl MultiVec self.length } + /// Returns how many fields each item in this `MultiVec` has. + pub fn field_cnt(&self) -> usize + { + self.field_arr_byte_offsets.len() + } + /// Returns how many items this `MultiVec` has capacity for. #[must_use] pub fn capacity(&self) -> usize |