Implementation of Transducers in elixir. This was a fun way to learn more about the functional side of elixir, and I also thought having transducers in elixir could be useful. But after I realized that transducers and streams are the same (some minor differences in implementation) I stopped work on this project. Transducers are more push oriented and streams are pull, but if you have a receiving function as source, streams can be push based too.
So, long story short, if you need something like transducers in elixir, use streams.
Check LICENSE file for more information.