pub fn read_sleb(data: &mut &[u8]) -> Option<i64>
Reads a sleb-encoded value from data, returning the value and consuming the bytes read from data. Returns None if the encoding is invalid.
data
None