13 lines
221 B
C#
13 lines
221 B
C#
using System;
|
|
using System.Buffers;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cysharp.Text
|
|
{
|
|
public interface IResettableBufferWriter<T> : IBufferWriter<T>
|
|
{
|
|
void Reset();
|
|
}
|
|
}
|