The CSV export used Box<dyn Iterator<Item = Option<usize>>> to unify empty and non-empty row iteration, violating the CLAUDE.md rule that Box/Rc container management should be split from logic. Replaced with a direct for loop over row indices, removing both the Box and the Option sentinels used to represent "placeholder empty row/col". Also removes unused pub use cell::CellKey re-export and an unused import in cell.rs tests. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
70 B
Rust
6 lines
70 B
Rust
pub mod category;
|
|
pub mod cell;
|
|
pub mod model;
|
|
|
|
pub use model::Model;
|