Delegate EncodeAction<T>
Represents a delegate that encodes a value with a Slice encoder.
public delegate void EncodeAction<in T>(ref SliceEncoder encoder, T value)
Parameters
encoderSliceEncoderThe Slice encoder.
valueTThe value to encode with the encoder.
Type Parameters
TThe type of the value to encode.