public override bool Contains(T obj)
 {
     return(small != null?small.Contains(obj) : large.Contains(obj));
 }