buildRawData(instructionSet, excludeArray): RawData

Processes an instruction set to build raw data entries, excluding specified strings, and converts certain elements into hashed or numeric representations.

Parameters

ParameterTypeDescription
instructionSetany[]An array of instructions to process. Elements can be strings or numbers.
excludeArraystring[]An array of strings to exclude from processing.

Returns

RawData

An object containing:

  • instructionSetIndex: An array of indices in the instruction set corresponding to processed elements.
  • argumentTypes: An array of argument types (e.g., 1 for strings).
  • dataValues: An array of byte arrays representing the processed data values.

Defined in

src/parsing/parsing-utilities.ts:392