Immutable to Mutable #546
-
Hello, sorry if this is a bit of a newbie question but I am working with msgpacks for the first time, wanted to know if the msgpack objects once unpacked are immutable objects? I wanted to modify some data while keeping the existing msgpack file and wanted to know how I would go on about achieving this? Currently I am using another library which makes use of msgpacks and their readers are I think immutable. just wanted to know if the limitation is coming from this library or just something the subsequent library just hasn't coded. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
msgpack is like JSON. Typical unpacked data is int, float, str, bytes, list, and dict. |
Beta Was this translation helpful? Give feedback.
-
I was able to track it, issues wasn’t with this library, it’s the subsequent library that used this. |
Beta Was this translation helpful? Give feedback.
I was able to track it, issues wasn’t with this library, it’s the subsequent library that used this.