Source code for workflow.functional.star


[docs]def star(fn): '''Wrap function to expand input to arguments''' return lambda args: fn(*args)