Closed fhagemann closed 1 year ago
https://github.com/legend-exp/LegendHDF5IO.jl/blob/1ced4f281e525116862595436774dfb7a879b535/src/types.jl#L192
When calling size(lha::LH5Array) it does not know the dimensions of LH5Array even though it should. Can the size function be adapted such that it works like that for arrays? There, we see no type instabilities.
size(lha::LH5Array)
LH5Array
size
@apmypb
Yes, size should definitely work.
Solved with #26
https://github.com/legend-exp/LegendHDF5IO.jl/blob/1ced4f281e525116862595436774dfb7a879b535/src/types.jl#L192
When calling
size(lha::LH5Array)
it does not know the dimensions ofLH5Array
even though it should. Can thesize
function be adapted such that it works like that for arrays? There, we see no type instabilities.@apmypb