Files
2026-08-27 10:56:38 -06:00

9 lines
227 B
C#

namespace ProtoBuf;
public interface IMeasuredProtoOutput<TOutput> : IProtoOutput<TOutput>
{
MeasureState<T> Measure<T>(T value, object userState = null);
void Serialize<T>(MeasureState<T> measured, TOutput destination);
}