예제 #1
0
파일: Set.cs 프로젝트: zzkongfu/ironpython3
        bool IStructuralEquatable.Equals(object other, IEqualityComparer /*!*/ comparer)
        {
            SetStorage items;

            return(SetStorage.GetItemsIfSet(other, out items) &&
                   SetStorage.Equals(_items, items, comparer));
        }