1
2
3
4
5
6
use super::collection::Collection;


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