Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IBufferWriter.cs
Go to the documentation of this file.
1namespace System.Buffers;
2
3public interface IBufferWriter<T>
4{
5 void Advance(int count);
6
7 Memory<T> GetMemory(int sizeHint = 0);
8
9 Span<T> GetSpan(int sizeHint = 0);
10}
Span< T > GetSpan(int sizeHint=0)
Memory< T > GetMemory(int sizeHint=0)