mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
13 lines
170 B
Plaintext
13 lines
170 B
Plaintext
enum NonZero: ubyte {
|
|
VAL = 1,
|
|
}
|
|
|
|
struct NonZeroArrayStruct {
|
|
data: [NonZero:4];
|
|
}
|
|
|
|
table NonZeroVectorTable {
|
|
values: [NonZero];
|
|
value: NonZero = VAL;
|
|
}
|