Get values from all rows at a specific position (for set operations)
(&self, position: usize)
| 98 | |
| 99 | /// Get values from all rows at a specific position (for set operations) |
| 100 | pub fn get_values_at_position(&self, position: usize) -> Vec<&Value> { |
| 101 | self.rows |
| 102 | .iter() |
| 103 | .filter_map(|row| row.get_value_at_position(position)) |
| 104 | .collect() |
| 105 | } |
| 106 | |
| 107 | /// Create a new result with unified variable names for set operations |
| 108 | pub fn with_unified_variables(mut self, unified_variables: Vec<String>) -> Self { |
nothing calls this directly
no test coverage detected