1
2
3
4
5
use super::Collection;

pub trait CollectionMut: Collection {
    fn clear(&mut self);
}