public static byte WriteCompressedShort(ref BufferWriter writer, short value) => WriteCompressedInt(ref writer, value);
public override void SerializeToExistingBuffer(ref BufferWriter writer, in LazinatorSerializationOptions options)
public static byte WriteCompressedDateTime(ref BufferWriter writer, DateTime value) => WriteCompressedLong(ref writer, value.Ticks);
public static byte WriteCompressedNullableDateTime(ref BufferWriter writer, DateTime?value) => WriteCompressedNullableLong(ref writer, value?.Ticks);
public static byte WriteCompressedTimeSpan(ref BufferWriter writer, TimeSpan value) => WriteCompressedLong(ref writer, value.Ticks);
public static byte WriteCompressedNullableTimeSpan(ref BufferWriter writer, TimeSpan?value) => WriteCompressedNullableLong(ref writer, value?.Ticks);
public static byte WriteCompressedNullableSByte(ref BufferWriter writer, sbyte?value) => WriteCompressedNullableByte(ref writer, (byte?)value);
public static byte WriteCompressedNullableByte(ref BufferWriter writer, byte?value) => WriteCompressedNullableInt(ref writer, value);
public static byte WriteCompressedNullableULong(ref BufferWriter writer, ulong?value) => WriteCompressedNullableLong(ref writer, (long?)value);
public static byte WriteCompressedNullableUInt(ref BufferWriter writer, uint?value) => WriteCompressedNullableInt(ref writer, (int?)value);
public static byte WriteCompressedNullableShort(ref BufferWriter writer, short?value) => WriteCompressedNullableInt(ref writer, value);
public static byte WriteCompressedULong(ref BufferWriter writer, ulong value) => WriteCompressedLong(ref writer, (long)value);
public static byte WriteCompressedUInt(ref BufferWriter writer, uint value) => WriteCompressedInt(ref writer, (int)value);