EncodeUntaggedFloatValue encodes a float value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, f float64)
| 1869 | // EncodeUntaggedFloatValue encodes a float value, appends it to the supplied buffer, |
| 1870 | // and returns the final buffer. |
| 1871 | func EncodeUntaggedFloatValue(appendTo []byte, f float64) []byte { |
| 1872 | return EncodeUint64Ascending(appendTo, math.Float64bits(f)) |
| 1873 | } |
| 1874 | |
| 1875 | // EncodeBytesValue encodes a byte array value with its value tag, appends it to |
| 1876 | // the supplied buffer, and returns the final buffer. |
no test coverage detected
searching dependent graphs…