Is there ever a good time to use int32 instead of sint32 in Google Protocol Buffers?
I’m not familiar with Google Protocol Buffers, but my interpretation of the documentation is: use uint32 if the value cannot be negative use sint32 if the value is pretty much as likely to be negative as not (for some fuzzy definition of “as likely to be”) use int32 if the value could be negative, but … Read more