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