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 | 71x 71x 71x 22x 22x 22x 22x | import { EncodeContext } from '../encode'; export function encodeValueIndex(value: any, context: EncodeContext): void { const { writer, values } = context; const index = values.indexOf(value); writer.writeUintVar(index); } export function encodeValueIndexLast(value: any, context: EncodeContext): void { const { writer, values } = context; const lastIndex = values.lastIndexOf(value); const endIndex = values.length - lastIndex; writer.writeUintVar(endIndex); } |