data_structure_traits 0.1.12

data structure collection traits
Documentation
1
2
3
4
5
6
7
8
pub trait Remove<K>
where
    K: ?Sized,
{
    type Output: ?Sized;

    fn remove(&mut self, K) -> Self::Output;
}