pub fn apply_reordering(
ordering: &mut Option<Vec<usize>>,
from: usize,
to: usize,
)Expand description
Helper method to be used by clients to help with handling column re-ordering during action processing.
match action {
Action::ColumnReorder { from, to } => {
egui_deferred_table::apply_column_reordering(&mut column_ordering, from, to);
}
// ...
}See also: