mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* disable clippy * Vector of enum default * swift and tests * git clang format * Rewrite enum parser checks * Remove Voids from more_defaults * vector enum swift * remove vector accessor from swift * clang format Co-authored-by: Casper Neo <cneo@google.com>
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
|
|
enum ABC: int { A, B, C }
|
|
|
|
|
|
table MoreDefaults {
|
|
ints: [int] = [];
|
|
floats: [float] = [ ];
|
|
empty_string: string = "";
|
|
some_string: string = "some";
|
|
abcs: [ABC] = [];
|
|
bools: [bool] = [];
|
|
}
|