EncodeVoidValue encodes a void with its value tag, appends it to the supplied buffer and returns the final buffer.
(appendTo []byte, colIDDelta uint32)
| 2686 | // EncodeVoidValue encodes a void with its value tag, appends it to |
| 2687 | // the supplied buffer and returns the final buffer. |
| 2688 | func EncodeVoidValue(appendTo []byte, colIDDelta uint32) []byte { |
| 2689 | return EncodeValueTag(appendTo, colIDDelta, Void) |
| 2690 | } |
| 2691 | |
| 2692 | // EncodeBox2DValue encodes a geopb.BoundingBox with its value tag, appends it to |
| 2693 | // the supplied buffer and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…