Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ BlockArrays = "1.0"
BlockBandedMatrices = "0.13"
DSP = "0.7"
FillArrays = "1.0"
Infinities = "0.1.1"
Infinities = "0.1.9"
LazyArrays = "2.2.3"
LinearAlgebra = "1.6"
SparseArrays = "1.0"
Statistics = "1.0"
Test = "1.0"
LinearAlgebra = "1"
SparseArrays = "1"
Statistics = "1"
Test = "1"
julia = "1.10"

[extras]
Expand Down
4 changes: 1 addition & 3 deletions src/infarrays.jl
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@

# fix error in show
Base.isassigned(A::AbstractArray, i::RealInfinity) = i == ∞ ? isassigned(A, ℵ₀) : false
Base.getindex(A::AbstractArray, i::RealInfinity) = A[convert(Integer, i)]
Base.getindex(A::AbstractCachedVector, i::RealInfinity) = A[convert(Integer, i)]

# work around due to RealInfinity appearing from UnitStepRange
show_delim_array(io::IO, itr::AbstractArray, op, delim, cl, delim_one, i1, inf::RealInfinity) =
Expand Down Expand Up @@ -430,4 +428,4 @@
LazyArrays.cache_getindex(::InfiniteCardinal{0}, A::CachedVector{<:Any,<:AbstractVector,<:AbstractFill{<:Any,1}}, I::AbstractVector) = LazyArrays.cache_getindex(nothing, A, I)


*(a::AbstractVector, b::AbstractFill{<:Any,2,Tuple{OneTo{Int},OneToInf{Int}}}) = ApplyArray(*,a,b)
*(a::AbstractVector, b::AbstractFill{<:Any,2,Tuple{OneTo{Int},OneToInf{Int}}}) = ApplyArray(*,a,b)

Check warning on line 431 in src/infarrays.jl

View check run for this annotation

Codecov / codecov/patch

src/infarrays.jl#L431

Added line #L431 was not covered by tests
Loading