julialang.org/blog/2016/02/iteration/
(Caveats and remarks: This article is written for mutable arrays. We do often require immutable arrays these days.
Some of the links to Julia documentation are out of date, see docs.julialang.org/en/v1/manual/arrays/ instead.
X... construction typically "splats" elements of tuple or array X, see the second half of docs.julialang.org/en/v1/manual/functions/#Varargs-Functions section for explanation and examples, starting from the words 'On the flip side, it is often handy to "splat" the values contained in an iterable collection into a function call as individual arguments'; this construction works everywhere, not just in function calls.)
(Caveats and remarks: This article is written for mutable arrays. We do often require immutable arrays these days.
Some of the links to Julia documentation are out of date, see docs.julialang.org/en/v1/manual/arrays/ instead.
X... construction typically "splats" elements of tuple or array X, see the second half of docs.julialang.org/en/v1/manual/functions/#Varargs-Functions section for explanation and examples, starting from the words 'On the flip side, it is often handy to "splat" the values contained in an iterable collection into a function call as individual arguments'; this construction works everywhere, not just in function calls.)
no subject
Date: 2021-05-08 08:23 pm (UTC)https://github.com/JuliaImages/ImageTransformations.jl/blob/master/src/ImageTransformations.jl
https://github.com/JuliaImages/ImageTransformations.jl/blob/master/src/autorange.jl
https://github.com/JuliaImages/ImageTransformations.jl/blob/master/src/resizing.jl
and I wanted to understand CartesianIndices which are used there. That's how I found that article.