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

Method has_variable_arguments

python/function.py:1430–1433  ·  view source on GitHub ↗

Whether the function takes a variable number of arguments

(self)

Source from the content-addressed store, hash-verified

1428
1429 @property
1430 def has_variable_arguments(self) -> 'types.BoolWithConfidence':
1431 """Whether the function takes a variable number of arguments"""
1432 result = core.BNFunctionHasVariableArguments(self.handle)
1433 return types.BoolWithConfidence(result.value, confidence=result.confidence)
1434
1435 @has_variable_arguments.setter
1436 def has_variable_arguments(self, value: Union[bool, 'types.BoolWithConfidence']) -> None: # type: ignore

Callers 3

lookup_localsMethod · 0.45
demangle_to_typeMethod · 0.45
export_functionsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected