is_none
No overview available.
def is_none(
val: any
) - > boolean
Checks if a given value is None. This utility is typically used for explicit null-checking in conditional logic.
Parameters
| Name | Type | Description |
|---|---|---|
| val | any | The object or value to be evaluated for a null reference |
Returns
| Type | Description |
|---|---|
boolean | True if the input value is None, False otherwise |