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
Suppose you have the following three files:
# In events.fbs namespace Events; enum Event { HOUSE_ON_FIRE, ... }
# In kitchen_events.fbs namespace Kitchen.Events; enum Event { OUT_OF_BUTTER, ... }
# In kitchen.fbs include "events.fbs"; include "kitchen_events.fbs"; namespace Kitchen; table KitchenState { eventlog: [Events.Event]; }
We need to document which of the two enums the eventlog refer to and whether we do the same thing as upstream.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suppose you have the following three files:
We need to document which of the two enums the eventlog refer to and whether we do the same thing as upstream.
The text was updated successfully, but these errors were encountered: