|
|
|
|
|
by snidane
2827 days ago
|
|
From my experience building similar pipelining and reverse polish function application tooling in python. Piping using the | operator can make tracebacks pretty ugly with some operators. If you want to keep the code still somewhat 'pythonic' without introducing the syntax magic using |, you can do it similarly: range(10)
| pp.flatmap(lambda x: [x + 1, x + 2])
| pp.map(lambda x: x * x)
...
You can do this instead: xs = range(10)
xs = pp.flatmap(xs, lambda x: [x + 1, x + 2])
xs = pp.map(xs, lambda x: x * x)
...
It helps to keep the operand as first argument, instead of last, because those lambdas are best kept at the end.So instead of map(fn, xs)
do map(xs, fn)
|
|