Skip to content

Commit b3730a6

Browse files
authored
Define size for ChainedVector IndexIterator (#50)
Fixes JuliaData/CSV.jl#842. I admit to not exactly understand why this is needed, except that the `InvertedIndex` type ends up hitting a generic `axes` method in Base where `size` is expected to be defined on the ChainedVector `IndexIterator` type.
1 parent 5cd8ed1 commit b3730a6

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/chainedvector.jl

+1
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ struct IndexIterator{A}
216216
arrays::Vector{A}
217217
end
218218

219+
Base.size(x::IndexIterator) = (length(x),)
219220
Base.length(x::IndexIterator) = sum(length, x.arrays)
220221
Base.eltype(::Type{IndexIterator{A}}) where {A <: AbstractVector} = ChainedVectorIndex{A}
221222

test/chainedvector.jl

+3
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,9 @@
366366
a = []
367367
append!(a, ChainedVector([[1, 2, 3]]))
368368
@test length(a) == 3
369+
370+
# https://github.com/JuliaData/CSV.jl/issues/842
371+
@test size(eachindex(ChainedVector([["a"]]))) == (1,)
369372
end
370373

371374
@testset "iteration protocol on ChainedVector" begin

0 commit comments

Comments
 (0)