EncodeUntaggedFloatValue encodes a float value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, f float64)
| 2625 | // EncodeUntaggedFloatValue encodes a float value, appends it to the supplied buffer, |
| 2626 | // and returns the final buffer. |
| 2627 | func EncodeUntaggedFloatValue(appendTo []byte, f float64) []byte { |
| 2628 | return EncodeUint64Ascending(appendTo, math.Float64bits(f)) |
| 2629 | } |
| 2630 | |
| 2631 | // EncodeUntaggedFloat32Value encodes a float32 value, appends it to the supplied buffer, |
| 2632 | // and returns the final buffer. |
no test coverage detected
searching dependent graphs…