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/table_bool_string_string.fbs
table table_a
{
my_bool:bool;
my_string:string;
my_second_string:string;
my_omitted_bool:bool;
}
root_type table_a;