예제 #1
0
파일: Set.cs 프로젝트: zzkongfu/ironpython3
 public bool __contains__(object item)
 {
     if (!SetStorage.GetHashableSetIfSet(ref item))
     {
         // make sure we have a hashable item
         return(_items.ContainsAlwaysHash(item));
     }
     return(_items.Contains(item));
 }