(rows: &mut [Vec<Value>], row_idx: usize, col_idx: usize, val: Value)
| 210 | // ── Cell write helper (pub(super) for value_agg) ────────────────────────────── |
| 211 | |
| 212 | pub(super) fn set_cell(rows: &mut [Vec<Value>], row_idx: usize, col_idx: usize, val: Value) { |
| 213 | if let Some(row) = rows.get_mut(row_idx) |
| 214 | && let Some(cell) = row.get_mut(col_idx) |
| 215 | { |
| 216 | *cell = val; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | // ── Ranking functions ───────────────────────────────────────────────────────── |
| 221 |
no test coverage detected