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
It was probably an API mistake to allow `convert`ing between mutable, heap-
allocated sequences. This is because `convert` is called implicit in Julia,
and converting sequences:
* Is slow compared to converting integers, causing unexpected allocations
* Creates a new, mutable struct with a separate object identity. This can lead
to nasty bugs when mutating the original sequence suddenly seems to have
no effect, because the observed sequence is actually a distinct copy.
0 commit comments