EncodeBox2DValue encodes a geopb.BoundingBox with its value tag, appends it to the supplied buffer and returns the final buffer.
(appendTo []byte, colIDDelta uint32, b geopb.BoundingBox)
| 2692 | // EncodeBox2DValue encodes a geopb.BoundingBox with its value tag, appends it to |
| 2693 | // the supplied buffer and returns the final buffer. |
| 2694 | func EncodeBox2DValue(appendTo []byte, colIDDelta uint32, b geopb.BoundingBox) ([]byte, error) { |
| 2695 | appendTo = EncodeValueTag(appendTo, colIDDelta, Box2D) |
| 2696 | return EncodeUntaggedBox2DValue(appendTo, b) |
| 2697 | } |
| 2698 | |
| 2699 | // EncodeUntaggedBox2DValue encodes a geopb.BoundingBox value, appends it to the supplied buffer, |
| 2700 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…