You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alias statements define a smaller form for a type expression. This allows defining options in a single location. Only explicitly set options are set in the alias, defaults are only resolved when the type is used.
type Example {
option byte_order = big;
alias my_int = integer<21, signed>;
option byte_order = little;
my_int a; // signed, little-endian
}
The text was updated successfully, but these errors were encountered:
alias
statements define a smaller form for a type expression. This allows defining options in a single location. Only explicitly set options are set in the alias, defaults are only resolved when the type is used.The text was updated successfully, but these errors were encountered: