We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Derived from #176 and #104
@dlfivefifty: I would say a better solution may be to just support Fill{StaticInt}, etc.
Taking on Static.jl as a dependency would open up interesting possibilities. For example, we could specialize vcat (related to #140) to get:
vcat
vcat(Fill(static(4.2), 5), Fill(static(4.2), 5)) === Fill(static(4.2), 10)
Static.jl is a lightweight dependency on top of FillArrays, load-time impact would probably be minor (needs to be tested, of course):
julia> @time using FillArrays 0.398913 seconds (764.83 k allocations: 46.937 MiB, 72.11% compilation time) julia> @time using Static 0.062017 seconds (93.65 k allocations: 5.420 MiB)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Derived from #176 and #104
Taking on Static.jl as a dependency would open up interesting possibilities. For example, we could specialize
vcat
(related to #140) to get:Static.jl is a lightweight dependency on top of FillArrays, load-time impact would probably be minor (needs to be tested, of course):
The text was updated successfully, but these errors were encountered: