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

The Python code (both generated and not) would be easier to read if it included type annotations. Would a PR adding these be accepted, or are there compatibility concerns with...

The documentation for [CreateUninitializedVector](https://google.github.io/flatbuffers/classflatbuffers_1_1_flat_buffer_builder.html#ac2b96292fa0fb1534fe7fd218a094d0c) seems to be incorrect. Particularly this line: > Write the data any time later to the returned buffer pointer `buf` `buf` can be invalidated by subsequent...

c++
documentation

Hello, I'm trying to build a C++ project using flatbuffers 2.0.6. This project uses -Wconversion and -Werror. When I'm including my generated C++ file, that have `#include "flatbuffers/flatbuffers.h"`, I get...

Trying to install flatbuffer in termux android.. but getting error in last time.. error: undefined symbol: __android_log_print ![Screenshot_2022-04-03-17-19-01-027_com termux](https://user-images.githubusercontent.com/72664192/161426518-eb80894b-ef46-4400-9b14-4641e8fe03d1.jpg)

Reach parity with C++, Java, etc.

help wanted
rust
good-first-contribution
not-stale

The following worked fine in 0.12: ``` union stage {LS_IN_PRE_LB, LS_OUT_PRE_LB} table __Table_stage { v: stage; } table Flow { stage: stage; // NOTE: field name shadows union name, which...

not-stale

When building multiple files from a given directory (let's call it `a`) which import files from another directory `b`, there is a `mod.rs` file produced which only imports mods from...

The language in question is Rust and I'm new to rust and FlatBuffers. Is there a way to represent a HashMap? I can do this by using a vector tables...

stale

As title mentioned. This can bring flatbuffers directory to outside GOPATH and make `gopls` works as expected. I think it just place `go.mod` inside `go` directory and it done.

stale

We are going to use the flatbuffer as the data format in our search index (not the message passing in RPC). Consider that the flatbuffer only support an array, if...