(mut self, keys: Vec<Vec<usize>>)
| 318 | } |
| 319 | |
| 320 | pub fn with_keys(mut self, keys: Vec<Vec<usize>>) -> Self { |
| 321 | for key in keys { |
| 322 | self = self.with_key(key) |
| 323 | } |
| 324 | self |
| 325 | } |
| 326 | |
| 327 | /// Computes the number of columns in the relation. |
| 328 | pub fn arity(&self) -> usize { |
no test coverage detected