Skip to main content

tree_table/api/
total.rs

1use crate::Table;
2
3impl Table {
4    pub fn total_rows(&self) -> usize {
5        Self::acr_total_rows(&self.grid.index.cells)
6    }
7
8    pub fn total_cols(&self) -> usize {
9        Self::acr_total_cols(&self.grid.header.cells)
10    }
11}