mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
using System.Linq;
|
|
using JetBrains.Annotations;
|
|
using Volo.Abp;
|
|
|
|
namespace System.Collections.Generic
|
|
{
|
|
/// <summary>
|
|
/// Extension methods for Collections.
|
|
/// </summary>
|
|
public static class AbpCollectionExtensions
|
|
{
|
|
/// <summary>
|
|
/// Checks whatever given collection object is null or has no item.
|
|
/// </summary>
|
|
public static bool IsNullOrEmpty<T>([CanBeNull] this ICollection<T> source)
|
|
{
|
|
return source == null || source.Count <= 0;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds an item to the collection if it's not already in the collection.
|
|
/// </summary>
|
|
/// <param name="source">Collection</param>
|
|
/// <param name="item">Item to check and add</param>
|
|
/// <typeparam name="T">Type of the items in the collection</typeparam>
|
|
/// <returns>Returns True if added, returns False if not.</returns>
|
|
public static bool AddIfNotContains<T>([NotNull] this ICollection<T> source, T item)
|
|
{
|
|
Check.NotNull(source, nameof(source));
|
|
|
|
if (source.Contains(item))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
source.Add(item);
|
|
return true;
|
|
}
|
|
|
|
public static IList<T> RemoveAll<T>([NotNull] this ICollection<T> source, Func<T, bool> predicate)
|
|
{
|
|
var items = source.Where(predicate).ToList();
|
|
|
|
foreach (var item in items)
|
|
{
|
|
source.Remove(item);
|
|
}
|
|
|
|
return items;
|
|
}
|
|
}
|
|
} |