Get a value by position (for set operations)
(&self, position: usize)
| 236 | |
| 237 | /// Get a value by position (for set operations) |
| 238 | pub fn get_value_at_position(&self, position: usize) -> Option<&Value> { |
| 239 | self.positional_values.get(position) |
| 240 | } |
| 241 | |
| 242 | /// Set a value in the row |
| 243 | pub fn set_value(&mut self, name: String, value: Value) { |
no test coverage detected