2023-04-23 12:23:59 -04:00

8 lines
214 B
C#

namespace AssetRipper.SourceGenerated.Extensions
{
public static class ArrayExtensions
{
public static bool IsNullOrEmpty<T>([NotNullWhen(false)] this T[]? array) => array is null || array.Length == 0;
}
}