Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-31 | Implement automated marshalling for slices of Marshallable types. | Rahat Mahmood | |
PiperOrigin-RevId: 304119255 | |||
2020-01-27 | Standardize on tools directory. | Adin Scannell | |
PiperOrigin-RevId: 291745021 | |||
2019-09-09 | go_marshal: Implement automatic generation of ABI marshalling code. | Rahat Mahmood | |
This CL implements go_marshal, a code generation utility for automatically serializing and deserializing ABI structs. The go_marshal tool automatically generates implementations of the new marshal interface. Unlike binary.Marshal/Unmarshal, the generated interface implementations use no runtime reflection, and translates to a single memcpy for most structs. See go_marshal/README.md for details. PiperOrigin-RevId: 268065475 |