Open
Description
Serialized data read from the wire often spans several data frames. The current proto.Unmarshal
API requires that data from all these frames be copied to a slice.
This extra copying(and memory allocation) can be avoided if we have an unmarshal gather which can deserialize data from multiple byte slices.
If there's an agreement on the proposed API, I'd happy to work on it's implementation as well.