EncodeFloatValue encodes a float value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colID uint32, f float64)
| 1862 | // EncodeFloatValue encodes a float value with its value tag, appends it to the |
| 1863 | // supplied buffer, and returns the final buffer. |
| 1864 | func EncodeFloatValue(appendTo []byte, colID uint32, f float64) []byte { |
| 1865 | appendTo = EncodeValueTag(appendTo, colID, Float) |
| 1866 | return EncodeUntaggedFloatValue(appendTo, f) |
| 1867 | } |
| 1868 | |
| 1869 | // EncodeUntaggedFloatValue encodes a float value, appends it to the supplied buffer, |
| 1870 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…