(zb scode.Bytes, d float64)
| 148 | type TypeOfFloat64 struct{} |
| 149 | |
| 150 | func AppendFloat64(zb scode.Bytes, d float64) scode.Bytes { |
| 151 | return binary.LittleEndian.AppendUint64(zb, math.Float64bits(d)) |
| 152 | } |
| 153 | |
| 154 | func EncodeFloat64(d float64) scode.Bytes { |
| 155 | var b [8]byte |
no outgoing calls
no test coverage detected