get_lambda_source
FunctionSource
v_1: str = get_lambda_source(func: Any)
Get the source definition of a lambda function expression.
Arguments
Requires
| Name | Type | Required | |
|---|---|---|---|
func | Any | A function object that is potentially a lambda function. |
Returns
| Name | Type | |
|---|---|---|
v_1 | str | The expression. Will return None if the given func is not a lambda function. |