MemoryAllocator<T>
Represents memory allocator.
using System.Runtime.CompilerServices;
namespace DotNext.Buffers
{
[return: Nullable(new byte[] {
0,
1
})]
public delegate MemoryOwner<T> MemoryAllocator<[Nullable(2)] T> (int length);
}