Function monero_wallet::io::read_raw_vec

source ยท
pub fn read_raw_vec<R, T, F>(
    f: F,
    len: usize,
    r: &mut R,
) -> Result<Vec<T>, Error>
where R: Read, F: Fn(&mut R) -> Result<T, Error>,
Expand description

Read a variable-length list of elements, without length-prefixing.