#if FAT using System.Collections.Generic; namespace LinqInternal.Collections { internal interface IReadOnlySet : IReadOnlyCollection { bool IsProperSubsetOf(IEnumerable other); bool IsProperSupersetOf(IEnumerable other); bool IsSubsetOf(IEnumerable other); bool IsSupersetOf(IEnumerable other); bool Overlaps(IEnumerable other); bool SetEquals(IEnumerable other); } } #endif