cossio
cossio
Code folding is indeed a bit strange when the closing parenthesis is not indented. You get two folds: One for the args and another for the function body. But maybe...
@YingboMa Is it guaranteed to preserve: ``` function my_large_function( argument1, argument2, argument3, argument4, argument5, x, y, z ) # code end ``` too?
A possible workaround: ```julia @parallel for (i,j) in collect(Iterators.product(1:10, 1:20)) .... end ```
@TAJD where exactly?
Maybe the workaround I suggested earlier: ``` @distributed for (i,j) in collect(Iterators.product(1:10, 1:20)) .... end ``` could be the default behavior of `@distributed` when it encounters a multi-dimensional loop? Unfortunately...
I find `zeros() .+ 1 == 1` very unintuitive. I had an issue with this today. The following function: ``` f(x::AbstractArray; dims=:) = sum(x .+ 1; dims=dims) ``` Then `f(x)`...
> What happens if the active environment has not been instantiated, and there isn't a manifest file? I'm assuming it throws an error? Instead of throwing an error, I would...
cf. https://github.com/julia-vscode/julia-vscode/issues/1901
It's a big breaking change
Yeah ... if it is clearly explained on the Readme / Changelog what needs to be changed in user code it should be fine!