Jishnu Bhattacharya

Results 185 issues of Jishnu Bhattacharya

Remove trailing whitespace, ensure files end with newlines, and replace non-breaking spaces with standard ones. No code change, only whitespace ones.

Perhaps we need a broadcasting rule for `FillArrays` that takes precedence over `Broadcast.DefaultArrayStyle{0}`. Currently, we obtain the somewhat unsatisfactory ```julia julia> x = Fill(2, 10) 10-element Fill{Int64}, with entries equal...

Copied from https://github.com/JuliaRegistries/CompatHelper.jl/blob/master/.github/workflows/CompatHelper.yml

```julia julia> p = Chebyshev([1,2,3]) Chebyshev(1⋅T₀(x) + 2⋅T₁(x) + 3⋅T₂(x)) julia> convert(typeof(p), p) Chebyshev(1⋅T₀(x) + 2⋅T₁(x) + 3⋅T₂(x)) julia> @which convert(typeof(p), p) convert(::Type{var"#196#P"}, p::var"#196#P") where var"#196#P" Base.@invoke convert(typeof(p)::Type{

A bunch of whitespace changes are introduced by the VScode plugin, sorry about these, but hopefully these will improve readability. The main change introduced here is the ability to compute...

Currently it is not possible to create an empty fits file, one with minimal header information, something along the lines of what's presented here: https://github.com/esheldon/fitsio/issues/164#issuecomment-389528797. This would be a nice...

FITS requires the header keywords be in uppercase. I wonder if it makes sense to convert the keys to uppercase while constructing a `FITSHeader` object? Otherwise the keys written out...

Let's say that I have a module ```julia module abcd f(::NTuple{N, T}) where {N,T} = (N,T) f(::Tuple{}) = (0,Any) end # module ``` Testing this using Aqua, I obtain ```julia...

bug
duplicate
test: unbound args

```julia julia> @time using ArrayLayouts 2.144474 seconds (4.45 M allocations: 381.961 MiB, 17.67% compilation time) ``` ```julia julia> @time_imports using ArrayLayouts 231.6 ms FillArrays 1527.5 ms ArrayLayouts ``` Maybe the...