functional
Functions:
Name | Description |
---|---|
sequential |
Compose functions sequentially. |
sequential
¶
Compose functions sequentially.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
|
Callable[..., Any]
|
The functions to compose. The first function may take any arguments, but the rest must take the output of the previous function. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
If no functions are passed. |
Returns:
Type | Description |
---|---|
Callable[..., Any]
|
A function that composes the given functions. |