tommyettinger opened a new issue, #1405: URL: https://github.com/apache/incubator-fury/issues/1405
## Is your feature request related to a problem? Please describe. It seems somewhat odd that `MemoryBuffer` provides `readLongsWithSizeEmbedded()` for `long[]`, as well as versions for `byte[]` and `char[]`, but nothing for other primitive arrays. Is there some recommended way for `Serializer`s to handle things like `int[]` written by `writePrimitiveArrayWithSizeEmbedded()` already? ## Describe the solution you'd like I have implemented [my own versions](https://github.com/tommyettinger/tantrum/blob/main/tantrum-jdkgdxds/src/main/java/com/github/tommyettinger/tantrum/jdkgdxds/helpers/Support.java) of array-reading methods, I just don't know if I'm missing an existing solution that wouldn't require so many copies of Fury code. ## Additional context I had a hard time finding examples of custom `Serializer`s in the documentation or even the tests. I think I am doing things correctly, but I'm not sure. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
