From e66b34a0cd2de0c5918ee4bf5890feaaca2342fe Mon Sep 17 00:00:00 2001 From: HampusM Date: Fri, 28 Mar 2025 14:27:26 +0100 Subject: feat: add field_cnt function --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 1d52d91..9e25467 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 -- cgit v1.2.3-18-g5258