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

Method contains

python/settings.py:236–244  ·  view source on GitHub ↗

``contains`` determine if a setting identifier exists in the active settings schema :param str key: the setting identifier :return: True if the identifier exists in this active settings schema, False otherwise :rtype: bool

(self, key: str)

Source from the content-addressed store, hash-verified

234 return core.BNSettingsRegisterSetting(self.handle, key, properties)
235
236 def contains(self, key: str) -> bool:
237 """
238 ``contains`` determine if a setting identifier exists in the active settings schema
239
240 :param str key: the setting identifier
241 :return: True if the identifier exists in this active settings schema, False otherwise
242 :rtype: bool
243 """
244 return core.BNSettingsContains(self.handle, key)
245
246 def is_empty(self) -> bool:
247 """

Callers 2

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected