FlatBuffers.jl icon indicating copy to clipboard operation
FlatBuffers.jl copied to clipboard

A pure Julia implementation of google flatbuffers

Results 20 FlatBuffers.jl issues
Sort by recently updated
recently updated
newest added

Hello, Pardon my ignorance, trying Julia for the first time. I am trying to write a client for a TCP service I have in C++. I am trying to figure...

I'm opening this issue to discuss the prospect of transitioning into using the `Arrow.jl` FlatBuffer submodule as the 'official' `julia` FlatBuffer implementation. The main motivation for doing so is two...

So, it turns out that `flatc` has a (seemingly undocumented) option to generate the schema as a JSON. This introduces the possibility of writing a pure Julia compiler for flatbuffer...

Hey, I just checked this repo and it is pretty awesome. Why did the development stop? Why doesn't Google's team maximize its speed? The read/serialize speed is really close to...

Alright, no clue what's happening here: I'm trying to write ``` table Field { /// Name is not required, in i.e. a List name: string; /// Whether or not this...

Thanks for your effort on Flatbuffers! I've used the pr branch for flatc support in julia (https://github.com/google/flatbuffers/pull/5088) to generate julia code for a fb-schema. This works fine for me, even...

The documentation implies that it is possible to use flatc to generate julia code. However, I don't see how to do this and the pull request at google has not...

```julia module Example using FlatBuffers @with_kw mutable struct SimpleType x::Int32 = 1 end # ... other generated stuff end import FlatBuffers, Example # create an instance of our type val...

Hey guys, I've been having an issue with reading from buffers which I've finally figured out. So, I'm trying to read [something](https://arrow.apache.org/docs/format/IPC.html) which has a 4-byte `Int32` followed by a...

I'm not sure I really understand what's going on here yet, so forgive me if this is a stupid question, but it [seems to me](https://google.github.io/flatbuffers/) that FlatBuffer fields are always...