FlatBuffers.jl
FlatBuffers.jl copied to clipboard
A pure Julia implementation of google flatbuffers
Not sure really if this is caused by FlatBuffers.jl or Feather.jl, but given the error messages and some evidence below, it might be more likely a FlatBuffers issues. below is...
When building FlatBuffer bytes, sometimes the array ends up in either of the following states: - just showing the array throws segfault in getindex ``` signal (11): Segmentation fault: 11...
FlatBuffers v0.4.0 (v1.0) pkg> test FlatBuffers ERROR: LoadError: LoadError: UndefVarError: next not defined Stacktrace: [1] getproperty(::Module, ::Symbol) at ./sysimg.jl:13 [2] top-level scope at none:0 [3] include at ./boot.jl:317 [inlined] [4]...
Any interest to support flatc directly to make it easier? https://github.com/google/flatbuffers/issues/4678#issuecomment-375407208
FlatBuffers correctly builds flatbuffer representations of vectors but fails to show() them. ``` julia> versioninfo() Julia Version 0.6.1 Commit 0d7248e (2017-10-24 22:15 UTC) Platform Info: OS: macOS (x86_64-apple-darwin14.5.0) CPU: Intel(R)...
Are immutable structs supposed to work with FlatBuffers? I couldn't make the serialization/deserialization work both with and without the `@STRUCT` annotation. I've added the following code under the `TestInt8I` struct...
Tracking issue for a few extra convenience macros that would make flatbuffer schema translation a little more straightforward: - [x] `@enumtype T UInt8`: since `Enum` in Julia is `Int32` by...
Ref: https://discourse.julialang.org/t/package-compatibility-caps/15301
It would be nice if we could have something that mimics the FlatBuffers mutate methods. See the "Mutating FlatBuffers" section in the the flatbuffers tutorial: https://google.github.io/flatbuffers/flatbuffers_guide_tutorial.html I'm not sure I'll...
Even though the reflection-based method of this implementation makes almost everything Just Work, it does provide some problems with circular reference types (types that have a member of the same...