Colin Summers
Colin Summers
@bramtayl `PermutedDimsArray` just remaps dimensions e.g.: ```julia julia> A=rand(2,3) 2×3 Array{Float64,2}: 0.307533 0.822543 0.530326 0.591914 0.782564 0.948809 julia> B=PermutedDimsArray(A, (2,1)) 3×2 PermutedDimsArray(::Array{Float64,2}, (2, 1)) with eltype Float64: 0.307533 0.591914 0.822543...
@oschulz I thought about doing the same thing, but you miss out on some optimizations with the extra layer of indirection. If we had: ```julia A = rand(2,3,4) B =...
@bramtayl `SlicedArray` still uses `True`/`False` internally, but I figured using `:`/`*` was a friendlier user-facing API.
@oschulz exactly, but `ArrayOfSimilarArrays` is just a special-case of a `SlicedArray` or @bramtayl's `Slices`. Basically, if we incorporate `SlicedArray`/`Slices` into ArraysOfArrays.jl then it would entirely replace `ArrayOfSimilarArrays`. @oschulz @bramtayl given...
Just ran into #3732 after banging my head against the wall. I would love for `builtins.path`/`builtins.filterSource` to usable from flakes. Building on what @edolstra suggested, would something more powerful than...
Thanks for the quick reply. I don't have much time for development, but I do have a PTD-610BT and can test a PR if you get a chance. Yeah, bluetooth...
Thanks for circling back to this! Yeah I imagine it'll become more clear what "jll 2.0" will look like after more usage. For my case, your suggestion actually works pretty...