mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Implement ICollection for Dictionary
This commit is contained in:
parent
4f800bf981
commit
92bc47f193
1 changed files with 42 additions and 1 deletions
|
@ -13,7 +13,7 @@ namespace System.Collections.Generic
|
|||
using System.Diagnostics;
|
||||
using System.Diagnostics.Contracts;
|
||||
|
||||
public class Dictionary<TKey, TValue> where TKey : IHashable //: IDictionary<TKey, TValue>, IDictionary, IReadOnlyDictionary<TKey, TValue>, ISerializable, IDeserializationCallback
|
||||
public class Dictionary<TKey, TValue> : ICollection<KeyValuePair<TKey, TValue>> where TKey : IHashable //: IDictionary<TKey, TValue>, IDictionary, IReadOnlyDictionary<TKey, TValue>, ISerializable, IDeserializationCallback
|
||||
{
|
||||
private struct Entry
|
||||
{
|
||||
|
@ -107,6 +107,11 @@ namespace System.Collections.Generic
|
|||
{
|
||||
Insert(key, value, true);
|
||||
}
|
||||
|
||||
public void Add(KeyValuePair<TKey, TValue> kvPair)
|
||||
{
|
||||
Insert(kvPair.Key, kvPair.Value, true);
|
||||
}
|
||||
|
||||
public bool TryAdd(TKey key, TValue value)
|
||||
{
|
||||
|
@ -215,6 +220,36 @@ namespace System.Collections.Generic
|
|||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool Contains(KeyValuePair<TKey, TValue> kvPair)
|
||||
{
|
||||
TValue value;
|
||||
if(TryGetValue(kvPair.Key, out value))
|
||||
{
|
||||
return value == kvPair.Value;
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public void CopyTo(KeyValuePair<TKey, TValue>[] kvPair, int index)
|
||||
{
|
||||
Keys.Reset();
|
||||
Values.Reset();
|
||||
int i = 0;
|
||||
|
||||
repeat
|
||||
{
|
||||
if(i >= index)
|
||||
{
|
||||
kvPair[i] = KeyValuePair<TKey,TValue>(Keys.Current, Values.CurrentRef);
|
||||
}
|
||||
}
|
||||
while(Keys.MoveNext() && Values.MoveNext());
|
||||
|
||||
Keys.Reset();
|
||||
Values.Reset();
|
||||
}
|
||||
|
||||
public Enumerator GetEnumerator()
|
||||
{
|
||||
|
@ -459,6 +494,12 @@ namespace System.Collections.Generic
|
|||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
[Inline]
|
||||
public bool Remove(KeyValuePair<TKey, TValue> kvPair)
|
||||
{
|
||||
return Remove(kvPair.Key);
|
||||
}
|
||||
|
||||
public Result<(TKey key, TValue value)> GetAndRemove(TKey key)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue