Whether the function takes a variable number of arguments
(self)
| 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 |
no outgoing calls
no test coverage detected