flatbuffers icon indicating copy to clipboard operation
flatbuffers copied to clipboard

FlatBuffers: Memory Efficient Serialization Library

Results 529 flatbuffers issues
Sort by recently updated
recently updated
newest added

hello, I downloaded version 2.0.5 on my centos 7.6. and cmake -G “Unix Makefiles” make make install and I copied an fbs file // Example IDL file for our monster's...

Forking this off of #6313 since it's really a different issue. The big question is how long will we support Python 2. There are some nice Python 3 features like...

python

In version 2, union helpers in the form of `unionToAnyX` are generated. Inside them, there is a switch of type: ```typescript switch(AnyX[type]) { case 'NONE': return null; ... } ```...

pr-requested

Given a file like: parent.fbs: ``` namespace parent; service Foo { // ... } ``` child.fbs: ``` include "parent.fbs"; namespace parent.child; service Foo { // ... } ``` You end...

grpc
pr-requested

As of today, besides of specific group of attributes, any other attribute that is mentioned in the schema has no effect on the output classes. I think that it can...

pr-requested

Many languages support vectors of unions. It would be nice to have such support in Rust too.

enhancement
rust
pr-requested

@vglavnyy implemented our current fuzzers [^1] which take in a binary blob that's generated with libfuzzer's default mutator. While this will eventually generate all flatbuffers, the space of binaries is...

enhancement

Union discriminator (at least in Java) map to a single byte, which begins to be problematic when the number of messages exceeds the maximum range.,

enhancement
not-stale

Right now there's little documentation about how to handle a vector of unions. I know this isn't supported in all languages, but it would be very helpful to have this...

help wanted
documentation
not-stale