As discussed in PR #3, in this comment, the methods rle and lz currently take ownership of their input, which leads to unnecessary cloning in the BinaryData::ser method. Consider modifying these methods to accept references instead of taking ownership to improve performance and reduce memory usage.\n\nRequester: @BurntNail
As discussed in PR #3, in this comment, the methods
rle
andlz
currently take ownership of their input, which leads to unnecessary cloning in theBinaryData::ser
method. Consider modifying these methods to accept references instead of taking ownership to improve performance and reduce memory usage.\n\nRequester: @BurntNail