Lines Matching refs:FlatBuffers
6 Before diving into the FlatBuffers usage in Lobster, it should be noted that the
8 FlatBuffers usage in all of the supported languages (including Lobster). This
9 page is designed to cover the nuances of FlatBuffers usage, specific to
17 ## FlatBuffers Lobster library code location
19 The code for the FlatBuffers Lobster library can be found at
21 [FlatBuffers GitHub page](https://github.com/google/flatbuffers/tree/master/
24 ## Testing the FlatBuffers Lobster library
35 ## Using the FlatBuffers Lobster library
38 example of how to use FlatBuffers in Lobster.*
40 There is support for both reading and writing FlatBuffers in Lobster.
42 To use FlatBuffers in your own code, first generate Lobster classes from your
44 FlatBuffers and the generated code to read or write a FlatBuffer.
70 Using FlatBuffers in Lobster should be relatively fast, as the implementation
79 Lobster has full support for parsing JSON into FlatBuffers, or generating
80 JSON from FlatBuffers. See `samples/sample_test.lobster` for an example.