flatbuffers
flatbuffers copied to clipboard
FlatBuffers: Memory Efficient Serialization Library
ref https://github.com/google/flatbuffers/issues/7512
A way to create a single file flatbuffers.js was done in https://github.com/google/flatbuffers/pull/7449. I however noted when doing https://github.com/google/flatbuffers/pull/7510#issuecomment-1238521420 that it's not exactly equivalent. The old https://unpkg.com/[email protected]/js/flatbuffers.js exports a symbol named...
Implements reworked entry point generation, so that each namespace gets an entrypoint and re-exports children. The top level entry point can be bundled up into a single file that should...
This is similar to https://github.com/google/flatbuffers/pull/7449 but for generated source. It would produce output that is more or less compatible with what we had in 1.x generated code. However to be...
int64/uint64 unimplemented in dart2js, UnsupportedError threws in typed_data_dart2js.dart ``` void setInt64(int byteOffset, int value, [Endianness endian=Endianness.BIG_ENDIAN]) { throw new UnsupportedError("Int64 accessor not supported by dart2js."); } ``` but protobuf supports...
Hey FlatBuffer folks! A little over a year ago I came on here asking [about plans to add key searching to the Go generator](https://github.com/google/flatbuffers/issues/6380). I had been meaning to set...
I realize now https://github.com/google/flatbuffers/issues/6673 was misguided because it disregards namespaces and hacks around that by renaming symbols. That creates an entry point with potentially far too many symbols and unexpected...
Thanks for all the work that goes into Flatbuffers! This issue was observed on Linux (Ubuntu 20.04) and MacOS, using flatbuffers-java 2.0.3, on jdk17. To recreate: Construct a Dictionary with...
### Environment flatbuffers v2.0.4 node v16.13.0 Debian GNU/Linux 11 (bullseye) tsc version 4.5.2 ### Repro This is in Typescript: ``` const flex_in = { test_number: 72.6 // Change this to...
The suggested way to do this is to use a bundler to create a so called UMD single file build (or IIFE) with entry point 'flatbuffers' from what the TypeScript...