🚧 Code tweak

This commit is contained in:
Manuel Cillero 2024-03-21 18:47:06 +01:00
parent 53d140ba92
commit 49d2d398b8

View file

@ -207,6 +207,10 @@ impl MixedComponents {
// MixedComponents GETTERS.
pub fn len(&self) -> usize {
self.0.len()
}
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}