...

Source file src/github.com/google/flatbuffers/go/struct.go

Documentation: github.com/google/flatbuffers/go

     1  package flatbuffers
     2  
     3  // Struct wraps a byte slice and provides read access to its data.
     4  //
     5  // Structs do not have a vtable.
     6  type Struct struct {
     7  	Table
     8  }
     9  

View as plain text