JuliaArrays / AxisArrays.jl

Performant arrays where each dimension can have a named axis with values
http://JuliaArrays.github.io/AxisArrays.jl/latest/
Other
200 stars 41 forks source link

AxisArrays exports axes, which conflicts with Base.axes #230

Open matthijscox opened 4 months ago

matthijscox commented 4 months ago

I noticed that the axes function is exported in AxisArrays, but this is a Base function as well. I would like to know whether this was a deliberate choice or this is a bug?

julia> using AxisArrays

julia> A = AxisArray(rand(2), a=[1,2]);

julia> axes(A)
WARNING: both AxisArrays and Base export "axes"; uses of it in module Main must be qualified