Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 5x 5x 5x 2x 2x 2x 2x | import { DecodeContext } from '../decode';
export function decodeLinkIndex(context: DecodeContext): any {
const { reader, links } = context;
const index = reader.readUintVar();
return links[index];
}
export function decodeLinkIndexLast(context: DecodeContext): any {
const { reader, links } = context;
const endIndex = reader.readUintVar();
const lastIndex = links.length - endIndex;
return links[lastIndex];
}
|