MsgPack.jl
MsgPack.jl copied to clipboard
Add support for complex numbers
- Support for
ComplexF32
(magic byte0x28
) andComplexF64
(magic byte0x29
) - Solves #44
- Works only on arrays
I know that the MsgPack specification does not support this out of the box, it is rather a proposal than a finalized solution. Also it may be preferable to do this using a true extension type, rather than simply taking some magic bytes as I did.