(self, var: 'variable.Variable')
| 2677 | core.BNCreateUserVariable(self.handle, var.to_BNVariable(), tc, name, ignore_disjoint_uses) |
| 2678 | |
| 2679 | def delete_user_var(self, var: 'variable.Variable') -> None: |
| 2680 | core.BNDeleteUserVariable(self.handle, var.to_BNVariable()) |
| 2681 | |
| 2682 | def is_var_user_defined(self, var: 'variable.Variable') -> bool: |
| 2683 | return core.BNIsVariableUserDefined(self.handle, var.to_BNVariable()) |
nothing calls this directly
no test coverage detected