Plumb Implementations
There are Plumb implementations for (at least) the following languages. If you know of another, please tell me!
- PHP
- Uses
__()
for grouping syntax - Available on Packagist
- Curries PHP functions automatically, and
plumb
itself is curried - Treats operators as functions, eg.
'+'
acts likecurry(function($x, $y) { return $x + $y; })
- Uses
- Python
- Partial support for keyword arguments
- Curries Python functions automatically, and
plumb
itself is curried
- Javascript
- Uses
_()
for grouping syntax - Curries Javascript functions automatically, and
plumb
itself is curried
- Uses