EncodeFloatValue encodes a float value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, f float64)
| 2618 | // EncodeFloatValue encodes a float value with its value tag, appends it to the |
| 2619 | // supplied buffer, and returns the final buffer. |
| 2620 | func EncodeFloatValue(appendTo []byte, colIDDelta uint32, f float64) []byte { |
| 2621 | appendTo = EncodeValueTag(appendTo, colIDDelta, Float) |
| 2622 | return EncodeUntaggedFloatValue(appendTo, f) |
| 2623 | } |
| 2624 | |
| 2625 | // EncodeUntaggedFloatValue encodes a float value, appends it to the supplied buffer, |
| 2626 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…