Skip to main content

HashTableSearcher

No overview available.

Attributes

AttributeTypeDescription
targetBound< 'py, PyAny >The Python object being searched for within the hash table structure.
eq_errorOption< PyErr > = NoneStores any Python exception encountered during equality comparisons to be raised after the search completes.

Constructor

Signature

def HashTableSearcher(
target: Bound< 'py, PyAny >,
eq_error: Option< PyErr >
) - > null

Parameters

NameTypeDescription
targetBound< 'py, PyAny >The target object to be searched within the hash table.
eq_errorOption< PyErr >An optional error encountered during equality comparisons.

Signature

def HashTableSearcher(
target: Bound< 'py, PyAny >
) - > null

Parameters

NameTypeDescription
targetBound< 'py, PyAny >The Python object to be searched, typically a dictionary or set utilizing hash table lookups.