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/parser_table.fbs
table Monster {
name :string;
pos_ :Vec3;
inventory :[ubyte];
etrue :bool;
mana :int = 150;
hp :foo = -100;
fl :float = 1.50;
fl2 :float = -1.5123e3;
waa :bool = true;
frie :ool (deprecated, priority: 1, other: foo);
friendly :bool = false (deprecated, priority: 1, some_key);
}