struct Point x :: Int y :: Int end
如果我有一个atype 数组Array{Point},是否有比这更好的方法(在语法上更干净或更快速)进行字段访问?
a
Array{Point}
(p->p.x).(a)
julia
julia ×1