Little idea for the Intellij plugin: Moving a piece of code in/out of a parZip...
dave08
06/26/2024, 3:37 PM
Say:
Copy code
val foo = parZip(
{ ... },
{ ... }, // this I just want to inline in the result
) { bar1, bar2, // bar2 should be inlined
Baz(bar1, /* here the content of the inline, instead of bar2 */)
}
dave08
06/26/2024, 3:38 PM
Also the reverse, if I'd select something in the last lambda, I'd like it to be added to be run in parallel...
e
Emre
06/26/2024, 9:03 PM
what's the question?
d
dave08
06/27/2024, 1:44 AM
There's an intellij plugin for arrow, it would be nice if it could do those refactorings...