1
2
3
4
5
6
pub trait AddImmut<V>
where
    V: ?Sized,
{
    fn add(&self, V) -> Self;
}