Check if the `RelationDesc` is empty.
(&self)
| 1087 | |
| 1088 | /// Check if the `RelationDesc` is empty. |
| 1089 | pub fn is_empty(&self) -> bool { |
| 1090 | self == &Self::empty() |
| 1091 | } |
| 1092 | |
| 1093 | /// Returns the number of columns in this [`RelationDesc`]. |
| 1094 | pub fn len(&self) -> usize { |
no test coverage detected