MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / AddOperandList

Method AddOperandList

lowlevelil.cpp:397–405  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

395
396
397ExprId LowLevelILFunction::AddOperandList(const vector<ExprId> operands)
398{
399 uint64_t* operandList = new uint64_t[operands.size()];
400 for (size_t i = 0; i < operands.size(); i++)
401 operandList[i] = operands[i];
402 ExprId result = (ExprId)BNLowLevelILAddOperandList(m_object, operandList, operands.size());
403 delete[] operandList;
404 return result;
405}
406
407
408ExprId LowLevelILFunction::AddIndexList(const vector<size_t> operands)

Callers 2

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected