Skip to content

Commit 82a6efb

Browse files
Allow _AxisLookup to fallback to Dict getindex (#3028)
1 parent 1844b21 commit 82a6efb

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

src/Containers/DenseAxisArray.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ function build_lookup(ax)
4848
return _AxisLookup(d)
4949
end
5050

51-
Base.getindex(x::_AxisLookup{Dict{K,Int}}, key::K) where {K} = x.data[key]
51+
Base.getindex(x::_AxisLookup{Dict{K,Int}}, key) where {K} = x.data[key]
5252
Base.getindex(::_AxisLookup{Dict{K,Int}}, key::Colon) where {K} = key
5353

5454
function Base.getindex(
5555
x::_AxisLookup{Dict{K,Int}},
56-
keys::AbstractVector{<:K},
56+
keys::AbstractVector,
5757
) where {K}
5858
return [x[key] for key in keys]
5959
end
6060

61-
function Base.get(x::_AxisLookup{Dict{K,Int}}, key::K, default) where {K}
61+
function Base.get(x::_AxisLookup{Dict{K,Int}}, key, default) where {K}
6262
return get(x.data, key, default)
6363
end
6464

test/Containers/DenseAxisArray.jl

+14
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ using Test
4343
@test isassigned(A, 2)
4444
@test !isassigned(A, 1)
4545
@test length.(axes(A)) == (2,)
46+
@test_throws KeyError A["2"]
4647

4748
correct_answer = DenseAxisArray([2.0, 3.0], 2:3)
4849
@test sprint(show, correct_answer) == """
@@ -93,6 +94,14 @@ And data, a 2-element $(Vector{Float64}):
9394
@test 1 .+ A == correct_answer
9495
end
9596

97+
@testset "String index set" begin
98+
A = @inferred DenseAxisArray([1.0, 2.0], ["a", "b"])
99+
@test (@inferred A["a"]) == (@inferred A[GenericString("a")]) == 1.0
100+
@test (@inferred A[["a", "b"]]) ==
101+
(@inferred A[[GenericString("a"), GenericString("b")]]) ==
102+
A
103+
end
104+
96105
@testset "Mixed range/symbol index sets" begin
97106
A = @inferred DenseAxisArray([1 2; 3 4], 2:3, [:a, :b])
98107
@test size(A) == (2, 2)
@@ -248,6 +257,11 @@ And data, a 0-dimensional $(Array{Int,0}):
248257
@test (@inferred C[2:3, [:a, :b]]) == C
249258
@test (@inferred C[2, [:a, :b]]) == DenseAxisArray([5.0, 6.0], [:a, :b])
250259
@test (@inferred C[2:3, :b]) == DenseAxisArray([6.0, 8.0], 2:3)
260+
261+
D = DenseAxisArray([5.0 6.0; 7.0 8.0], 2:3, ["a", "b"])
262+
@test (@inferred D[2, GenericString("b")]) == 6.0
263+
@test (@inferred D[2, [GenericString("a"), GenericString("b")]]) ==
264+
DenseAxisArray([5.0, 6.0], ["a", "b"])
251265
end
252266
@testset "BitArray" begin
253267
x = DenseAxisArray([0 1; 1 0], [:a, :b], 1:2)

0 commit comments

Comments
 (0)