EncodeUntaggedFloat32Value encodes a float32 value, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, f float32)
| 2631 | // EncodeUntaggedFloat32Value encodes a float32 value, appends it to the supplied buffer, |
| 2632 | // and returns the final buffer. |
| 2633 | func EncodeUntaggedFloat32Value(appendTo []byte, f float32) []byte { |
| 2634 | return EncodeUint32Ascending(appendTo, math.Float32bits(f)) |
| 2635 | } |
| 2636 | |
| 2637 | // EncodeBytesValue encodes a byte array value with its value tag, appends it to |
| 2638 | // the supplied buffer, and returns the final buffer. |
no test coverage detected
searching dependent graphs…