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
TEST: Add append test that deals with incorrect layout situations
The existing code can already be used to clone an array into an
appendable situation.
I.e. even if a.try_append_array(axis, b) would error, we can always do this:
let c = empty array
c.try_append_array(axis, &a);
c.try_append_array(axis, &b);
0 commit comments