Lines Matching refs:Go
1 Use in Go {#flatbuffers_guide_use_go}
6 Before diving into the FlatBuffers usage in Go, it should be noted that
8 to general FlatBuffers usage in all of the supported languages (including Go).
10 Go.
17 ## FlatBuffers Go library code location
19 The code for the FlatBuffers Go library can be found at
23 ## Testing the FlatBuffers Go library
25 The code to test the Go library can be found at `flatbuffers/tests`.
32 *Note: The shell script requires [Go](https://golang.org/doc/install) to
35 ## Using the FlatBuffers Go library
38 example of how to use FlatBuffers in Go.*
40 FlatBuffers supports reading and writing binary FlatBuffers in Go.
42 To use FlatBuffers in your own code, first generate Go classes from your
46 For example, here is how you would read a FlatBuffer binary file in Go: First,
96 from Go, though you could use the C++ parser through cgo. Please see the