Function cookie_factory::bytes::be_f64

source ·
pub fn be_f64<W: Write>(i: f64) -> impl SerializeFn<W>
Expand description

Writes an f64 in big endian byte order to the output

use cookie_factory::{gen, bytes::be_f64};

let mut buf = [0u8; 100];

{
  let (buf, pos) = gen(be_f64(1.0f64), &mut buf[..]).unwrap();
  assert_eq!(pos, 8);
  assert_eq!(buf.len(), 100 - 8);
}

assert_eq!(&buf[..8], &[63u8, 240u8, 0u8, 0u8, 0u8, 0u8, 0u8, 0u8][..]);