mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
7 lines
208 B
C#
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;
|
|
}
|