pub trait FiniteRelation {
// Required method
fn len(&self) -> usize;
// Provided method
fn is_empty(&self) -> bool { ... }
}Expand description
Shared trait for finite relations. A finite relation that can report the number of stored tuples.