-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Description
I think #30817 changed show(io, "text/plain", ::Array{Day}) etc. On cb7a569 (and in Julia 1.0 and 1.1) it was:
julia> Day.(1:3)
3-element Array{Day,1}:
1 day
2 days
3 daysBut now (c0e9182) it's:
julia> Day.(1:3)
3-element Array{Day,1}:
Day(1)
Day(2)
Day(3)Furthermore, confusingly (to me), Matrix{Day} still prints human readable form:
julia> [Day(1) Day(2)]
1×2 Array{Day,2}:
1 day 2 daysHowever, @omus and others approved the following behavior in #30200:
julia> fill(d, 2) 2-element Array{Date,1}: Date(2018, 12, 7) Date(2018, 12, 7) julia> fill(d, 2, 2) 2×2 Array{Date,2}: 2018-12-07 2018-12-07 2018-12-07 2018-12-07
So maybe the current behavior of Vector{Day} and Matrix{Day} is intentional? (But, to be honest, I was confused why ndims of an array changes how elements are printed.)
Another confusing part is that show(io, ::Array{Day}) still shows human-readable form. Shouldn't it closer to repr than 3-argument show?
julia> show(Day.(1:2))
Day[1 day, 2 days]Note that the output of Dict{Day,Day} and Vector{Pair{Day,Day}} are not changed. It has been (and is):
julia> Dict(Day(1) => Day(2))
Dict{Day,Day} with 1 entry:
1 day => 2 days
julia> [Day(1) => Day(2)]
1-element Array{Pair{Day,Day},1}:
1 day => 2 daysWhat is the intended printing behavior of Day, Date, and alike in the containers?
See also: #30683