ayush00git commented on issue #3606: URL: https://github.com/apache/fory/issues/3606#issuecomment-4297911158
@chaokunyang I ran a bug analysis on types file through claude and it detected this bug and suggested a few fix: 1. Implement the `operator >>>` (logical right shift) for all unsigned integer wrappers to expose a proper logical shift API. 2. For `Uint64.operator >>`, consider internally implementing it as `value >>> shift` to guarantee unsigned shift semantics by default, OR explicitly document that users must use the newly added `operator >>>` API to avoid sign-extension. should I begin with a PR ? -- 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]
