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

Method not_in_set_of_values

python/variable.py:600–611  ·  view source on GitHub ↗

Create a PossibleValueSet object for a value NOT in a set of values. :param list(int) values: List of integer values :rtype: PossibleValueSet

(values)

Source from the content-addressed store, hash-verified

598
599 @staticmethod
600 def not_in_set_of_values(values) -> 'PossibleValueSet':
601 """
602 Create a PossibleValueSet object for a value NOT in a set of values.
603
604 :param list(int) values: List of integer values
605 :rtype: PossibleValueSet
606 """
607 result = PossibleValueSet()
608 result._type = RegisterValueType.NotInSetOfValues
609 result._values = set(values)
610 result._count = len(values)
611 return result
612
613 @staticmethod
614 def lookup_table_value(lookup_table, mapping) -> 'PossibleValueSet':

Callers

nothing calls this directly

Calls 1

PossibleValueSetClass · 0.70

Tested by

no test coverage detected