Dot file output

TODO put everything in a library
This commit is contained in:
elvis
2025-07-07 22:45:02 +02:00
parent cdf3d23243
commit 8baa1bafc1
5 changed files with 419 additions and 11 deletions

View File

@ -108,6 +108,10 @@ impl RSset {
pub fn push(&mut self, b: &RSset) {
self.identifiers.extend(b.iter())
}
pub fn is_empty(&self) -> bool {
self.identifiers.is_empty()
}
}
impl Default for RSset {