use crate::*;
pub static REORDER_CELL_PATHS: ExperimentalOption = ExperimentalOption::new(&ReorderCellPaths);
struct ReorderCellPaths;
impl ExperimentalOptionMarker for ReorderCellPaths {
const IDENTIFIER: &'static str = "reorder-cell-paths";
const DESCRIPTION: &'static str = "\
Reorder the steps in accessing nested value to decrease memory usage.
\
Reorder the parts of cell-path when accessing a cell in a table, always select the row before selecting the column.";
const STATUS: Status = Status::OptOut;
const SINCE: Version = (0, 105, 2);
const ISSUE: u32 = 16766;
}