You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This can be a separate small package used in StructArrays, ROOT, etc.
Does that sound reasonable?
On naming, Julia often uses "view" to mean lazy in this context, so I wonder if we can make it more consistent here. view(parent, index) won't work unfortunately, because it already means 0-dim array view and not a scalar.
There's no reason why
LazyRow
can only work with StructArray, for example we had this for a while now:https://github.com/JuliaHEP/UnROOT.jl/blob/5f9ae4f21f04bf61f56f0ccabe7942754e07f7d9/src/iteration.jl#L196-L199
but essentially for any table-like structure, we simply have:
and basically this is just saying
LazyRow
wraps a object that supportparent.col[idx]
The text was updated successfully, but these errors were encountered: