blob: 426700903ed6d9a03c4586daec92b05b3607715d (
plain) (
blame)
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
|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace Org.BouncyCastle.Utilities.Collections
{
public abstract class CollectionUtilities
{
public static void AddRange(IList to, IEnumerable range)
{
foreach (object o in range)
{
to.Add(o);
}
}
public static void CollectMatches<T>(ICollection<T> matches, ISelector<T> selector, params IStore<T>[] stores)
{
CollectMatches(matches, selector, stores);
}
public static void CollectMatches<T>(ICollection<T> matches, ISelector<T> selector,
IEnumerable<IStore<T>> stores)
{
if (matches == null)
throw new ArgumentNullException(nameof(matches));
if (stores == null)
return;
foreach (var store in stores)
{
if (store == null)
continue;
foreach (T match in store.EnumerateMatches(selector))
{
matches.Add(match);
}
}
}
public static IStore<T> CreateStore<T>(IEnumerable<T> contents)
{
return new StoreImpl<T>(contents);
}
public static IEnumerable Proxy(IEnumerable e)
{
return new EnumerableProxy(e);
}
public static IEnumerable<T> Proxy<T>(IEnumerable<T> e)
{
return new EnumerableProxy<T>(e);
}
public static IDictionary ReadOnly(IDictionary d)
{
return new UnmodifiableDictionaryProxy(d);
}
public static IList ReadOnly(IList l)
{
return new UnmodifiableListProxy(l);
}
public static ISet ReadOnly(ISet s)
{
return new UnmodifiableSetProxy(s);
}
public static object RequireNext(IEnumerator e)
{
if (!e.MoveNext())
throw new InvalidOperationException();
return e.Current;
}
public static string ToString<T>(IEnumerable<T> c)
{
IEnumerator<T> e = c.GetEnumerator();
if (!e.MoveNext())
return "[]";
StringBuilder sb = new StringBuilder("[");
sb.Append(e.Current);
while (e.MoveNext())
{
sb.Append(", ");
sb.Append(e.Current);
}
sb.Append(']');
return sb.ToString();
}
}
}
|