forked from BigfootDev/flatbuffers
Implement code generation and runtime library for Go, derived from the Java implementation. Additionally, the test suite verifies: - the exact bytes in the Builder buffer during object construction, - vtable deduplication, and - table construction, via a fuzzer derived from the C++ implementation. Change-Id: Ib95a019c684891def2b50281e570b4843fea7baa
9 lines
154 B
Go
9 lines
154 B
Go
package flatbuffers
|
|
|
|
// Struct wraps a byte slice and provides read access to its data.
|
|
//
|
|
// Structs do not have a vtable.
|
|
type Struct struct {
|
|
Table
|
|
}
|