Home | History | Annotate | Download | only in 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