We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be more convenient for users, if Zserio will support directly the offset type:
struct Schema { offset32 myOffset; uint8 someValue; varsize someVariableSizedValue; myOffset: string stringValue; };
The following types should be supported:
offset16
offset32
offset64
However, the old syntax should be still valid (uint16 myOffset) because of the backward compatibility.
uint16
For more info, please have a look to the issue #640.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be more convenient for users, if Zserio will support directly the offset type:
The following types should be supported:
offset16
with the underlying type uint16offset32
with the underlying type uint32offset64
with the underlying type uint64However, the old syntax should be still valid (
uint16
myOffset) because of the backward compatibility.For more info, please have a look to the issue #640.
The text was updated successfully, but these errors were encountered: