-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathCollectionExtensions.cs
124 lines (110 loc) · 3.39 KB
/
CollectionExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Verse;
namespace Multiplayer.Client
{
public static class CollectionExtensions
{
public static int? IndexNullable<T>(this IEnumerable<T> e, Func<T, bool> p)
{
int i = 0;
foreach (T obj in e)
{
if (p(obj)) return i;
++i;
}
return null;
}
public static void RemoveNulls(this IList list)
{
for (int i = list.Count - 1; i > 0; i--)
{
if (list[i] == null)
list.RemoveAt(i);
}
}
public static IEnumerable<T> AllNotNull<T>(this IEnumerable<T> e)
{
return e.Where(t => t != null);
}
public static void Insert<T>(this List<T> list, int index, params T[] items)
{
list.InsertRange(index, items);
}
public static void Add<T>(this List<T> list, params T[] items)
{
list.AddRange(items);
}
public static T RemoveFirst<T>(this List<T> list)
{
T elem = list[0];
list.RemoveAt(0);
return elem;
}
public static int RemoveAll<TKey, TValue>(this Dictionary<TKey, TValue> dictionary, Func<TKey, TValue, bool> predicate)
{
List<TKey> list = null;
int result;
try
{
foreach (var (key, value) in dictionary)
{
if (predicate(key, value))
{
list ??= SimplePool<List<TKey>>.Get();
list.Add(key);
}
}
if (list != null)
{
int i = 0;
int count = list.Count;
while (i < count)
{
dictionary.Remove(list[i]);
i++;
}
result = list.Count;
}
else
{
result = 0;
}
}
finally
{
if (list != null)
{
list.Clear();
SimplePool<List<TKey>>.Return(list);
}
}
return result;
}
public static bool EqualAsSets<T>(this IEnumerable<T> enum1, IEnumerable<T> enum2)
{
return enum1.ToHashSet().SetEquals(enum2);
}
public static IEnumerable<(A a, B b)> Zip<A, B>(this IEnumerable<A> enumA, IEnumerable<B> enumB)
{
return Enumerable.Zip(enumA, enumB, (a, b) => (a, b));
}
/// <summary>
/// Like ToDictionary but overrides duplicate keys
/// </summary>
public static Dictionary<K, V> ToDictionaryPermissive<T, K, V>(this IEnumerable<T> e, Func<T, K> keys, Func<T, V> values)
{
var dict = new Dictionary<K, V>();
foreach (var item in e)
dict[keys(item)] = values(item);
return dict;
}
public static IEnumerable<V> GetOrEmpty<K, V>(this Dictionary<K, V> dict, K key)
{
if (dict.TryGetValue(key, out var value))
yield return value;
}
}
}