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
When I apply fill_none and then ravel (or flatten), the resulting array has been reordered. In the following snippet, I expect the result to be ak.Array([False,False,True]), but instead it is ak.Array([False,True,False]).
Version of Awkward Array
2.6.6
Description and code to reproduce
When I apply
fill_none
and thenravel
(orflatten
), the resulting array has been reordered. In the following snippet, I expect the result to beak.Array([False,False,True])
, but instead it isak.Array([False,True,False])
.returns
Apologies if this is expected, and is instead my own misunderstanding. Thank you!
The text was updated successfully, but these errors were encountered: