Function binbin::write_vec_le[][src]

pub fn write_vec_le<F, R>(into: &mut Vec<u8>, f: F) -> Result<R> where
    for<'w> F: FnOnce(&mut Writer<'w, &mut Cursor<&mut Vec<u8>>, LittleEndian>) -> Result<R>, 
Expand description

Writes arbitrary binary data into a byte vector using the given function f, writing little-endian by default.