pub fn verify_table_array<T>(
buf: &[u8],
field_pos: usize,
depth: usize,
out: &mut Vec<usize>,
) -> Result<(), VerifyError>where
T: Verify,Expand description
out receives one position per table element — duplicates are expected
when elements share a vtable (the common case) and are deduplicated later.