2020-03-15 23:54:48 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2020-05-29 00:33:49 +08:00
|
|
|
|
namespace AntDesign
|
2020-03-15 23:54:48 +08:00
|
|
|
|
{
|
|
|
|
|
public static class EnumerableExtensions
|
|
|
|
|
{
|
|
|
|
|
public static void ForEach<T>(this IEnumerable<T> items, Action<T> action)
|
|
|
|
|
{
|
|
|
|
|
if (items == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (T obj in items)
|
|
|
|
|
{
|
|
|
|
|
action(obj);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async Task ForEachAsync<T>(this IEnumerable<T> items, Func<T, Task> func)
|
|
|
|
|
{
|
|
|
|
|
if (items == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < items.Count(); i++)
|
|
|
|
|
{
|
|
|
|
|
await func(items.ElementAt(i));
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-22 21:24:41 +08:00
|
|
|
|
|
|
|
|
|
public static bool IsIn<T>(this T source, params T[] array)
|
|
|
|
|
{
|
2020-07-30 23:54:31 +08:00
|
|
|
|
if (array == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-22 21:24:41 +08:00
|
|
|
|
return array.Contains(source);
|
|
|
|
|
}
|
2020-07-10 17:57:20 +08:00
|
|
|
|
|
|
|
|
|
public static bool IsIn<T>(this T source, IEnumerable<T> array)
|
|
|
|
|
{
|
2020-07-30 23:54:31 +08:00
|
|
|
|
if (array == null)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-10 17:57:20 +08:00
|
|
|
|
return array.Contains(source);
|
|
|
|
|
}
|
2020-07-30 23:54:31 +08:00
|
|
|
|
|
|
|
|
|
public static T[] Append<T>(this T[] array, T item)
|
|
|
|
|
{
|
|
|
|
|
if (array == null)
|
|
|
|
|
{
|
|
|
|
|
return new[] { item };
|
|
|
|
|
}
|
|
|
|
|
Array.Resize(ref array, array.Length + 1);
|
|
|
|
|
array[^1] = item;
|
|
|
|
|
|
|
|
|
|
return array;
|
|
|
|
|
}
|
2020-08-18 18:05:44 +08:00
|
|
|
|
|
|
|
|
|
public static T[] Remove<T>(this T[] array, T item)
|
|
|
|
|
{
|
|
|
|
|
if (array == null)
|
|
|
|
|
{
|
|
|
|
|
return new[] { item };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
array = array.Where(x => !x.Equals(item)).ToArray();
|
|
|
|
|
|
|
|
|
|
return array;
|
|
|
|
|
}
|
2020-03-15 23:54:48 +08:00
|
|
|
|
}
|
2020-06-05 16:06:23 +08:00
|
|
|
|
}
|