New
Unclaimed project
Are you a maintainer of quark? Claim this project to take control of your public changelog and roadmap.
Compose functions, from the head of the list of functions. The is the reverse order versus what one would normally expect (left-to-right rather than right-to-left).
iex> sum_plus_one = compose_list([&(&1 + 1), &Enum.sum/1])
...> sum_plus_one.([1, 2, 3])
7