Matt
08/16/2024, 4:13 PMTaggedEncoder
is there a way to detect if a value is UInt? I can find the override encodeTaggedInt
but not one of UInt, seems like it gets converted to IntBen Woodworth
08/16/2024, 5:08 PMserializer.descriptor == byteArraySerializer.descriptor
encodeSerializableValue
encodeUInt
that's implemented the same as the other encode methods, then calling your own encodeTaggedUInt
(edit: first part won't work because the UInt serializer doesn't call encodeSerializableValue. see my 3rd reply)Ben Woodworth
08/16/2024, 5:13 PMencodeInline
, though I'm not familiar enough with inline serializing to know the best way to implement thatBen Woodworth
08/16/2024, 5:54 PM