7 lines
222 B
C#
7 lines
222 B
C#
|
namespace PkmnLib.Static.Utils;
|
||
|
|
||
|
public static class EnumerableHelpers
|
||
|
{
|
||
|
public static IEnumerable<T> WhereNotNull<T>(this IEnumerable<T?> enumerable) where T : class =>
|
||
|
enumerable.Where(x => x is not null)!;
|
||
|
}
|