Returns true of this group has no rows
(&self)
| 15 | impl Group { |
| 16 | /// Returns true of this group has no rows |
| 17 | pub fn is_empty(&self) -> bool { |
| 18 | self.rows.is_empty() |
| 19 | } |
| 20 | |
| 21 | /// Returns the number of rows in this group |
| 22 | pub fn len(&self) -> usize { |
no outgoing calls
no test coverage detected