iterate_over_arguments¶
A function which returns an iterator of its arguments.
- pythonic_fp.gadgets.iterate_over_arguments(*args: A) Iterator¶
Function returning an iterator of its arguments.
Note
Does not create an object to iterate over.
well, not in the Python world
maybe in the C world
- Parameters:
args – Objects to iterate over.
- Returns:
An iterator of the functions arguments.