summary refs log tree commit diff
path: root/crypto/src/util/collections/CollectionUtilities.cs
blob: fd0bdcc7a54d814972dc7c2efd3c68c775e827c0 (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
using System;
using System.Collections;
using System.Text;

namespace Org.BouncyCastle.Utilities.Collections
{
	public sealed class CollectionUtilities
	{
		private CollectionUtilities()
		{
		}

        public static void AddRange(IList to, ICollection range)
        {
            foreach (object o in range)
            {
                to.Add(o);
            }
        }

        public static bool CheckElementsAreOfType(
			IEnumerable e,
			Type		t)
		{
			foreach (object o in e)
			{
				if (!t.IsInstanceOfType(o))
					return false;
			}
			return true;
		}

        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 string ToString(
			IEnumerable c)
		{
			StringBuilder sb = new StringBuilder("[");

			IEnumerator e = c.GetEnumerator();

			if (e.MoveNext())
			{
				sb.Append(e.Current.ToString());

				while (e.MoveNext())
				{
					sb.Append(", ");
					sb.Append(e.Current.ToString());
				}
			}

			sb.Append(']');

			return sb.ToString();
		}
	}
}