(zb scode.Bytes, f float32)
| 125 | type TypeOfFloat32 struct{} |
| 126 | |
| 127 | func AppendFloat32(zb scode.Bytes, f float32) scode.Bytes { |
| 128 | return binary.LittleEndian.AppendUint32(zb, math.Float32bits(f)) |
| 129 | } |
| 130 | |
| 131 | func EncodeFloat32(d float32) scode.Bytes { |
| 132 | var b [4]byte |
no outgoing calls
no test coverage detected