You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
560 B
27 lines
560 B
5 years ago
|
#if FAT
|
||
|
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace LinqInternal.Collections
|
||
|
{
|
||
|
internal partial class ProgressiveSet<T> : IExtendedReadOnlySet<T>, IExtendedSet<T>
|
||
|
{
|
||
|
IReadOnlySet<T> IExtendedSet<T>.AsReadOnly
|
||
|
{
|
||
|
get { return this; }
|
||
|
}
|
||
|
|
||
|
bool IExtendedSet<T>.Add(T item)
|
||
|
{
|
||
|
throw new NotSupportedException();
|
||
|
}
|
||
|
|
||
|
bool IExtendedSet<T>.Remove(T item, IEqualityComparer<T> comparer)
|
||
|
{
|
||
|
throw new NotSupportedException();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|