pierre-vigier / Perl6-Data-MessagePack

Message pack implementation for perl6 / msgpack.org[Perl 6]
Artistic License 2.0
5 stars 8 forks source link

fix string packing with multi-byte graphemes #8

Closed timo closed 6 years ago

timo commented 6 years ago

until now it'd use $s.chars for the length, then write out $s.encode.list, which measure different things.

timo commented 6 years ago

After merging the PR, i recommend you bump the module version, too

pierre-vigier commented 6 years ago

Thanks for the improvement