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.
173 lines
4.6 KiB
173 lines
4.6 KiB
// Needed for NET30 |
|
#if !NET_4_6 |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using LinqInternal.Core; |
|
|
|
namespace LinqInternal.Collections.Specialized |
|
{ |
|
[System.Diagnostics.DebuggerNonUserCode] |
|
internal partial class EnumerationCollection<T> : ICollection<T>, IReadOnlyCollection<T> |
|
{ |
|
private readonly Func<T, bool> _contains; |
|
private readonly Func<int> _count; |
|
private readonly IEnumerable<T> _wrapped; |
|
|
|
public EnumerationCollection(IEnumerable<T> wrapped) |
|
{ |
|
if (wrapped == null) |
|
{ |
|
throw new ArgumentNullException("wrapped"); |
|
} |
|
_wrapped = wrapped; |
|
_count = _wrapped.Count; |
|
_contains = item => _wrapped.Contains(item, EqualityComparer<T>.Default); |
|
} |
|
|
|
public EnumerationCollection(T[] wrapped) |
|
{ |
|
if (wrapped == null) |
|
{ |
|
throw new ArgumentNullException("wrapped"); |
|
} |
|
_wrapped = wrapped; |
|
_count = () => wrapped.Length; |
|
_contains = item => Array.IndexOf(wrapped, item) >= 0; |
|
} |
|
|
|
public EnumerationCollection(ICollection<T> wrapped) |
|
{ |
|
if (wrapped == null) |
|
{ |
|
throw new ArgumentNullException("wrapped"); |
|
} |
|
_wrapped = wrapped; |
|
_count = () => wrapped.Count; |
|
_contains = wrapped.Contains; |
|
} |
|
|
|
public EnumerationCollection(IEnumerable<T> wrapped, Func<int> count) |
|
{ |
|
if (wrapped == null) |
|
{ |
|
throw new ArgumentNullException("wrapped"); |
|
} |
|
_wrapped = wrapped; |
|
if (count == null) |
|
{ |
|
throw new ArgumentNullException("count"); |
|
} |
|
_count = count; |
|
_contains = item => _wrapped.Contains(item, EqualityComparer<T>.Default); |
|
} |
|
|
|
public EnumerationCollection(IEnumerable<T> wrapped, Func<T, bool> contains) |
|
{ |
|
if (wrapped == null) |
|
{ |
|
throw new ArgumentNullException("wrapped"); |
|
} |
|
_wrapped = wrapped; |
|
_count = _wrapped.Count; |
|
if (contains == null) |
|
{ |
|
throw new ArgumentNullException("contains"); |
|
} |
|
_contains = contains; |
|
} |
|
|
|
public EnumerationCollection(IEnumerable<T> wrapped, Func<int> count, Func<T, bool> contains) |
|
{ |
|
if (wrapped == null) |
|
{ |
|
throw new ArgumentNullException("wrapped"); |
|
} |
|
_wrapped = wrapped; |
|
if (count == null) |
|
{ |
|
throw new ArgumentNullException("count"); |
|
} |
|
_count = count; |
|
if (contains == null) |
|
{ |
|
throw new ArgumentNullException("contains"); |
|
} |
|
_contains = contains; |
|
} |
|
|
|
public int Count |
|
{ |
|
get { return _count.Invoke(); } |
|
} |
|
|
|
bool ICollection<T>.IsReadOnly |
|
{ |
|
get { return true; } |
|
} |
|
|
|
public bool Contains(T item) |
|
{ |
|
return _contains.Invoke(item); |
|
} |
|
|
|
public bool Contains(T item, IEqualityComparer<T> comparer) |
|
{ |
|
return Enumerable.Contains(this, item, comparer); |
|
} |
|
|
|
public void CopyTo(T[] array, int arrayIndex) |
|
{ |
|
_wrapped.CopyTo(array, arrayIndex); |
|
} |
|
|
|
public void CopyTo(T[] array) |
|
{ |
|
_wrapped.CopyTo(array, 0); |
|
} |
|
|
|
public void CopyTo(T[] array, int arrayIndex, int countLimit) |
|
{ |
|
Extensions.CanCopyTo(array, arrayIndex, countLimit); |
|
Extensions.CopyTo(this, array, arrayIndex, countLimit); |
|
} |
|
|
|
public IEnumerator<T> GetEnumerator() |
|
{ |
|
return _wrapped.GetEnumerator(); |
|
} |
|
|
|
void ICollection<T>.Add(T item) |
|
{ |
|
throw new NotSupportedException(); |
|
} |
|
|
|
void ICollection<T>.Clear() |
|
{ |
|
throw new NotSupportedException(); |
|
} |
|
|
|
bool ICollection<T>.Remove(T item) |
|
{ |
|
throw new NotSupportedException(); |
|
} |
|
|
|
public int IndexOf(T item) |
|
{ |
|
return _wrapped.IndexOf(item); |
|
} |
|
|
|
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() |
|
{ |
|
return GetEnumerator(); |
|
} |
|
|
|
public T[] ToArray() |
|
{ |
|
var array = new T[_count.Invoke()]; |
|
CopyTo(array); |
|
return array; |
|
} |
|
} |
|
} |
|
#endif |