This is an an application of an identity function:
julia> map(z::Int->z, Array(Int,1))
1-element Array{Int64,1}:
36746368
So it is. This is also:
julia> map(z::Int->z, Array(Int,0))
0-element Array{Any,1}
This result seems incorrect. Is this the intended result?