using Misaki.HighPerformance.Unsafe.Collections; namespace Misaki.HighPerformance.Unsafe.Buffer; // TODO: Implement a pool for UnsafeArray. public unsafe static class UnsafeArrayPool { public static UnsafeArray Rent(int minimalSize) where T : unmanaged { throw new NotImplementedException(); } public static void Return(UnsafeArray array) where T : unmanaged { throw new NotImplementedException(); } }