bhftbootcamp / Serde.jl

Serde is a Julia library for (de)serializing data to/from various formats. The library offers a simple and concise API for defining custom (de)serialization behavior for user-defined types
Apache License 2.0
48 stars 9 forks source link

Tuple Deserialization #59

Closed rossviljoen closed 1 month ago

rossviljoen commented 2 months ago

It would be nice to be able to do:

deser_json(Tuple{String, Int}, to_json(("a", 3)))

(Thanks for the great package!)