Newer
Older
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?xml version="1.0"?>
<doc>
<assembly>
<name>MoreLinq</name>
</assembly>
<members>
<member name="T:MoreLinq.MoreEnumerable">
<summary>
Provides a set of static methods for querying objects that
implement <see cref="T:System.Collections.Generic.IEnumerable`1" />.
</summary>
</member>
<member name="M:MoreLinq.MoreEnumerable.Acquire``1(System.Collections.Generic.IEnumerable{``0})">
<summary>
Ensures that a source sequence of <see cref="T:System.IDisposable"/>
objects are all acquired successfully. If the acquisition of any
one <see cref="T:System.IDisposable"/> fails then those successfully
acquired till that point are disposed.
</summary>
<typeparam name="TSource">Type of elements in <paramref name="source"/> sequence.</typeparam>
<param name="source">Source sequence of <see cref="T:System.IDisposable"/> objects.</param>
<returns>
Returns an array of all the acquired <see cref="T:System.IDisposable"/>
objects in source order.
</returns>
<remarks>
This operator executes immediately.
</remarks>
</member>
<member name="M:MoreLinq.MoreEnumerable.Aggregate``4(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},``2,System.Func{``2,``0,``2},System.Func{``1,``2,``3})">
<summary>
Applies two accumulators sequentially in a single pass over a
sequence.
</summary>
<typeparam name="T">The type of elements in <paramref name="source"/>.</typeparam>
<typeparam name="TAccumulate1">The type of first accumulator value.</typeparam>
<typeparam name="TAccumulate2">The type of second accumulator value.</typeparam>
<typeparam name="TResult">The type of the accumulated result.</typeparam>
<param name="source">The source sequence</param>
<param name="seed1">The seed value for the first accumulator.</param>
<param name="accumulator1">The first accumulator.</param>
<param name="seed2">The seed value for the second accumulator.</param>
<param name="accumulator2">The second accumulator.</param>
<param name="resultSelector">
A function that projects a single result given the result of each
accumulator.</param>
<returns>The value returned by <paramref name="resultSelector"/>.</returns>
<remarks>
This operator executes immediately.
</remarks>
</member>
<member name="M:MoreLinq.MoreEnumerable.Aggregate``5(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},``2,System.Func{``2,``0,``2},``3,System.Func{``3,``0,``3},System.Func{``1,``2,``3,``4})">
<summary>
Applies three accumulators sequentially in a single pass over a
sequence.
</summary>
<typeparam name="T">The type of elements in <paramref name="source"/>.</typeparam>
<typeparam name="TAccumulate1">The type of first accumulator value.</typeparam>
<typeparam name="TAccumulate2">The type of second accumulator value.</typeparam>
<typeparam name="TAccumulate3">The type of third accumulator value.</typeparam>
<typeparam name="TResult">The type of the accumulated result.</typeparam>
<param name="source">The source sequence</param>
<param name="seed1">The seed value for the first accumulator.</param>
<param name="accumulator1">The first accumulator.</param>
<param name="seed2">The seed value for the second accumulator.</param>
<param name="accumulator2">The second accumulator.</param>
<param name="seed3">The seed value for the third accumulator.</param>
<param name="accumulator3">The third accumulator.</param>
<param name="resultSelector">
A function that projects a single result given the result of each
accumulator.</param>
<returns>The value returned by <paramref name="resultSelector"/>.</returns>
<remarks>
This operator executes immediately.
</remarks>
</member>
<member name="M:MoreLinq.MoreEnumerable.Aggregate``6(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},``2,System.Func{``2,``0,``2},``3,System.Func{``3,``0,``3},``4,System.Func{``4,``0,``4},System.Func{``1,``2,``3,``4,``5})">
<summary>
Applies four accumulators sequentially in a single pass over a
sequence.
</summary>
<typeparam name="T">The type of elements in <paramref name="source"/>.</typeparam>
<typeparam name="TAccumulate1">The type of first accumulator value.</typeparam>
<typeparam name="TAccumulate2">The type of second accumulator value.</typeparam>
<typeparam name="TAccumulate3">The type of third accumulator value.</typeparam>
<typeparam name="TAccumulate4">The type of fourth accumulator value.</typeparam>
<typeparam name="TResult">The type of the accumulated result.</typeparam>
<param name="source">The source sequence</param>
<param name="seed1">The seed value for the first accumulator.</param>
<param name="accumulator1">The first accumulator.</param>
<param name="seed2">The seed value for the second accumulator.</param>
<param name="accumulator2">The second accumulator.</param>
<param name="seed3">The seed value for the third accumulator.</param>
<param name="accumulator3">The third accumulator.</param>
<param name="seed4">The seed value for the fourth accumulator.</param>
<param name="accumulator4">The fourth accumulator.</param>
<param name="resultSelector">
A function that projects a single result given the result of each
accumulator.</param>
<returns>The value returned by <paramref name="resultSelector"/>.</returns>
<remarks>
This operator executes immediately.
</remarks>
</member>
<member name="M:MoreLinq.MoreEnumerable.Aggregate``7(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},``2,System.Func{``2,``0,``2},``3,System.Func{``3,``0,``3},``4,System.Func{``4,``0,``4},``5,System.Func{``5,``0,``5},System.Func{``1,``2,``3,``4,``5,``6})">
<summary>
Applies five accumulators sequentially in a single pass over a
sequence.
</summary>
<typeparam name="T">The type of elements in <paramref name="source"/>.</typeparam>
<typeparam name="TAccumulate1">The type of first accumulator value.</typeparam>
<typeparam name="TAccumulate2">The type of second accumulator value.</typeparam>
<typeparam name="TAccumulate3">The type of third accumulator value.</typeparam>
<typeparam name="TAccumulate4">The type of fourth accumulator value.</typeparam>
<typeparam name="TAccumulate5">The type of fifth accumulator value.</typeparam>
<typeparam name="TResult">The type of the accumulated result.</typeparam>
<param name="source">The source sequence</param>
<param name="seed1">The seed value for the first accumulator.</param>
<param name="accumulator1">The first accumulator.</param>
<param name="seed2">The seed value for the second accumulator.</param>
<param name="accumulator2">The second accumulator.</param>
<param name="seed3">The seed value for the third accumulator.</param>
<param name="accumulator3">The third accumulator.</param>
<param name="seed4">The seed value for the fourth accumulator.</param>
<param name="accumulator4">The fourth accumulator.</param>
<param name="seed5">The seed value for the fifth accumulator.</param>
<param name="accumulator5">The fifth accumulator.</param>
<param name="resultSelector">
A function that projects a single result given the result of each
accumulator.</param>
<returns>The value returned by <paramref name="resultSelector"/>.</returns>
<remarks>
This operator executes immediately.
</remarks>
</member>
<member name="M:MoreLinq.MoreEnumerable.Aggregate``8(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},``2,System.Func{``2,``0,``2},``3,System.Func{``3,``0,``3},``4,System.Func{``4,``0,``4},``5,System.Func{``5,``0,``5},``6,System.Func{``6,``0,``6},System.Func{``1,``2,``3,``4,``5,``6,``7})">
<summary>
Applies six accumulators sequentially in a single pass over a
sequence.
</summary>
<typeparam name="T">The type of elements in <paramref name="source"/>.</typeparam>
<typeparam name="TAccumulate1">The type of first accumulator value.</typeparam>
<typeparam name="TAccumulate2">The type of second accumulator value.</typeparam>
<typeparam name="TAccumulate3">The type of third accumulator value.</typeparam>
<typeparam name="TAccumulate4">The type of fourth accumulator value.</typeparam>
<typeparam name="TAccumulate5">The type of fifth accumulator value.</typeparam>
<typeparam name="TAccumulate6">The type of sixth accumulator value.</typeparam>
<typeparam name="TResult">The type of the accumulated result.</typeparam>
<param name="source">The source sequence</param>
<param name="seed1">The seed value for the first accumulator.</param>
<param name="accumulator1">The first accumulator.</param>
<param name="seed2">The seed value for the second accumulator.</param>
<param name="accumulator2">The second accumulator.</param>
<param name="seed3">The seed value for the third accumulator.</param>
<param name="accumulator3">The third accumulator.</param>
<param name="seed4">The seed value for the fourth accumulator.</param>
<param name="accumulator4">The fourth accumulator.</param>
<param name="seed5">The seed value for the fifth accumulator.</param>
<param name="accumulator5">The fifth accumulator.</param>
<param name="seed6">The seed value for the sixth accumulator.</param>
<param name="accumulator6">The sixth accumulator.</param>
<param name="resultSelector">
A function that projects a single result given the result of each
accumulator.</param>
<returns>The value returned by <paramref name="resultSelector"/>.</returns>
<remarks>
This operator executes immediately.
</remarks>
</member>
<member name="M:MoreLinq.MoreEnumerable.Aggregate``9(System.Collections.Generic.IEnumerable{``0},``1,System.Func{``1,``0,``1},``2,System.Func{``2,``0,``2},``3,System.Func{``3,``0,``3},``4,System.Func{``4,``0,``4},``5,System.Func{``5,``0,``5},``6,System.Func{``6,``0,``6},``7,System.Func{``7,``0,``7},System.Func{``1,``2,``3,``4,``5,``6,``7,``8})">
<summary>
Applies seven accumulators sequentially in a single pass over a
sequence.
</summary>
<typeparam name="T">The type of elements in <paramref name="source"/>.</typeparam>
<typeparam name="TAccumulate1">The type of first accumulator value.</typeparam>
<typeparam name="TAccumulate2">The type of second accumulator value.</typeparam>
<typeparam name="TAccumulate3">The type of third accumulator value.</typeparam>
<typeparam name="TAccumulate4">The type of fourth accumulator value.</typeparam>
<typeparam name="TAccumulate5">The type of fifth accumulator value.</typeparam>
<typeparam name="TAccumulate6">The type of sixth accumulator value.</typeparam>
<typeparam name="TAccumulate7">The type of seventh accumulator value.</typeparam>
<typeparam name="TResult">The type of the accumulated result.</typeparam>
<param name="source">The source sequence</param>
<param name="seed1">The seed value for the first accumulator.</param>
<param name="accumulator1">The first accumulator.</param>
<param name="seed2">The seed value for the second accumulator.</param>
<param name="accumulator2">The second accumulator.</param>
<param name="seed3">The seed value for the third accumulator.</param>
<param name="accumulator3">The third accumulator.</param>
<param name="seed4">The seed value for the fourth accumulator.</param>
<param name="accumulator4">The fourth accumulator.</param>
<param name="seed5">The seed value for the fifth accumulator.</param>
<param name="accumulator5">The fifth accumulator.</param>
<param name="seed6">The seed value for the sixth accumulator.</param>
<param name="accumulator6">The sixth accumulator.</param>
<param name="seed7">The seed value for the seventh accumulator.</param>
<param name="accumulator7">The seventh accumulator.</param>
<param name="resultSelector">
A function that projects a single result given the result of each
Loading
Loading full blame...