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/defaults.fbs
table scalars
{
my_byte:byte = -7;
my_ubyte:ubyte = 7;
my_bool:bool = true;
my_short:short = -7;
my_ushort:ushort = 7;
my_int:int = -7;
my_uint:uint = 7;
my_float:float = -7.7;
my_long:long = -7;
my_ulong:ulong = 7;
my_double:double = -7.7;
}
root_type scalars;