HashTableSearcher
No overview available.
Attributes
| Attribute | Type | Description |
|---|---|---|
| target | Bound< 'py, PyAny > | The Python object being searched for within the hash table structure. |
| eq_error | Option< PyErr > = None | Stores 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
| Name | Type | Description |
|---|---|---|
| target | Bound< 'py, PyAny > | The target object to be searched within the hash table. |
| eq_error | Option< PyErr > | An optional error encountered during equality comparisons. |
Signature
def HashTableSearcher(
target: Bound< 'py, PyAny >
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| target | Bound< 'py, PyAny > | The Python object to be searched, typically a dictionary or set utilizing hash table lookups. |