Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 43c8a6a8 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

added extension methods for zipping 4 enumerations

parent 858a8480
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ namespace TUGraz.VectoCommon.Utils
{
if (start < 0) start = source.Length + start;
if (end < 0) end = source.Length + end;
var dest = new T[end-start];
var dest = new T[end - start];
Array.ConstrainedCopy(source, start, dest, 0, end - start);
return dest;
}
......@@ -137,7 +137,24 @@ namespace TUGraz.VectoCommon.Utils
}
}
/// <summary>
/// Zips all elements of two enumerable together. If the enumerables dont have the same length an exception is thrown.
/// </summary>
/// <exception cref="System.InvalidOperationException">Enumeration already finished. Thrown if the enumerables dont have the same length.</exception>
public static IEnumerable<(T1 Item1, T2 Item2, T3 Item3, T4 Item4)> Zip<T1, T2, T3, T4>(this IEnumerable<T1> item1, IEnumerable<T2> item2, IEnumerable<T3> item3, IEnumerable<T4> item4)
{
using (var first = item1.GetEnumerator()) {
using (var second = item2.GetEnumerator()) {
using (var third = item3.GetEnumerator()) {
using (var fourth = item4.GetEnumerator()) {
while (first.MoveNext() | second.MoveNext() | third.MoveNext() | fourth.MoveNext()) {
yield return (first.Current, second.Current, third.Current, fourth.Current);
}
}
}
}
}
}
/// <summary>
/// Sums up the values of selector.
......
......@@ -52,12 +52,6 @@ namespace TUGraz.VectoCore.Utils
return defaultValue;
}
public static IEnumerable<TResult> SelectData<TResult>(this DataTable self, Func<DataRow,TResult> selector) =>
self.Rows.Cast<DataRow>().Select(selector);
public static IEnumerable<TResult> SelectData<TResult>(this DataTable self, Func<DataRow, int, TResult> selector) =>
self.Rows.Cast<DataRow>().Select(selector);
public static IEnumerable<DataRow> Where(this DataTable self, Func<DataRow, bool> predicate) =>
self.Rows.Cast<DataRow>().Where(predicate);
......@@ -124,6 +118,14 @@ namespace TUGraz.VectoCore.Utils
: row.Field<string>(row.Table.Columns[columnName]).ToBoolean();
public static IEnumerable<T> Values<T>(this DataColumn column) =>
column.Table.AsEnumerable().Select(r => r.Field<T>(column));
typeof(T).IsEnum
? column.Table.Values(r => r[column].ParseEnum<T>())
: column.Table.Values(r => r.Field<T>(column));
public static IEnumerable<TResult> Values<TResult>(this DataTable self, Func<DataRow, TResult> selector) =>
self.Rows.Cast<DataRow>().Select(selector);
public static IEnumerable<TResult> Values<TResult>(this DataTable self, Func<DataRow, int, TResult> selector) =>
self.Rows.Cast<DataRow>().Select(selector);
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment