cbor
cbor copied to clipboard
Allow to define Map type while decoding
The Cbor serializer currently can't specify the types of keys and values for a Map during decoding. It would be beneficial to introduce a feature like:
CborSimpleCodec cborSimpleCodec = CborSimpleCodec(mapType: Type);
For reference, something like https://github.com/ugorji/go/blob/07c54c229a5acac2d5bc739820a3ecc5411b7b33/codec/decode.go#L216
Maybe, I need to look further, need to be careful of outputting as json as json only has map key types as string of course.