diff --git a/src/dynamic_value.rs b/src/dynamic_value.rs index 1bc3fa9..0dddcac 100644 --- a/src/dynamic_value.rs +++ b/src/dynamic_value.rs @@ -30,6 +30,11 @@ impl DynamicRow { pub fn get(&self, index: usize) -> Option<&I> { self.values.get(index) } + + /// Gets the list of all the values of the row. + pub fn all_values(&self) -> &[I] { + &self.values + } } impl DynamicRow> {