Files

9 lines
227 B
C#
Raw Permalink Normal View History

2026-08-27 10:56:38 -06:00
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);
}