(buf: &mut Vec<u8>, f: f64)
| 80 | /// Write a msgpack float64. |
| 81 | #[inline] |
| 82 | pub fn write_f64(buf: &mut Vec<u8>, f: f64) { |
| 83 | buf.push(0xCB); |
| 84 | buf.extend_from_slice(&f.to_be_bytes()); |
| 85 | } |
| 86 | |
| 87 | /// Write a msgpack boolean. |
| 88 | #[inline] |
no test coverage detected