MsgPack.jl
MsgPack.jl copied to clipboard
Round trip of nested tuple gives type conversion error
using MsgPack
obj = (1,(2,3))
unpack(pack(obj), typeof(obj))
ERROR: MethodError: Cannot convert
an object of type Vector{Any} to an object of type Tuple{Int64, Int64}