The page you navigated to () does not exist, so we brought you to the closest page to it.
You have switched from the to the variant of this site. There is no equivalent of . We have taken you to the closest page in the variant.
1.16.16
flytekit.core.hash
Directory
Classes
| Class | Description |
|---|---|
HashMethod |
Flyte-specific object used to wrap the hash function for a specific type. |
HashOnReferenceMixin |
Variables
| Property | Type | Description |
|---|---|---|
T |
TypeVar |
flytekit.core.hash.HashMethod
Flyte-specific object used to wrap the hash function for a specific type
Parameters
class HashMethod(
function: typing.Callable[[~T], str],
)| Parameter | Type | Description |
|---|---|---|
function |
typing.Callable[[~T], str] |
Methods
| Method | Description |
|---|---|
calculate() |
Calculate hash for obj. |
calculate()
def calculate(
obj: ~T,
) -> strCalculate hash for obj.
| Parameter | Type | Description |
|---|---|---|
obj |
~T |