2025-06-23 11:42:47 -07:00

7 lines
208 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;
}