Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Linq.cs « Mono.Cecil.Tests « Test - github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1fac18675dc3eca930ddd62e31185b024341a97 (plain)
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
using System;
using System.Collections.Generic;

using Mono;

#if !NET_3_5 && !NET_4_0

namespace System.Linq {

	static class Enumerable {

		public static IEnumerable<TRet> Select<TItem, TRet> (this IEnumerable<TItem> self, Func<TItem, TRet> selector)
		{
			foreach (var item in self)
				yield return selector (item);
		}

		public static IEnumerable<T> Where<T> (this IEnumerable<T> self, Func<T, bool> predicate)
		{
			foreach (var item in self)
				if (predicate (item))
					yield return item;
		}

		public static List<T> ToList<T> (this IEnumerable<T> self)
		{
			return new List<T> (self);
		}

		public static T [] ToArray<T> (this IEnumerable<T> self)
		{
			return self.ToList ().ToArray ();
		}

		public static T First<T> (this IEnumerable<T> self)
		{
			using (var enumerator = self.GetEnumerator ()) {
				if (!enumerator.MoveNext ())
					throw new InvalidOperationException ();

				return enumerator.Current;
			}
		}

		public static T First<T> (this IEnumerable<T> self, Func<T, bool> predicate)
		{
			return self.Where (t => predicate (t)).First ();
		}
	}
}

#endif