(De-)Serialize N-dimensional arrays in julia

what about a representation more like:

struct FlatArray{T <: Tuple, V <: AbstractVector}
    size::T
    values::V
end

? Since one can already configure custom (de)-serialization of structs with MsgPack.

1 Like