Packages
This is a flatbuffers implementation in Elixir. In contrast to existing implementations there is no need to compile code from a schema. Instead, data and schemas are processed dynamically at runtime, offering greater flexibility.
Current section
Files
Jump to
Current section
Files
test/schemas/vector_of_enums.fbs
enum enum_inner : byte { Red, Green, Blue }
table vector_table
{
enum_fields:[enum_inner];
}
root_type vector_table;