Almost ... there.

This commit is contained in:
2025-11-11 14:20:28 -08:00
parent c795172692
commit 1bc560f684
3 changed files with 97 additions and 0 deletions

View File

@@ -232,6 +232,10 @@ impl TypeRestrictions {
restrictions: vec![],
}
}
pub fn is_empty(&self) -> bool {
self.restrictions.is_empty()
}
}
#[derive(Debug)]