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
The current removeAt implementation for Sequence looks a little inconsistent to me, at least compared to the way List acts:
Io> "123" removeAt(0)
==> "23"
Io> list(1,2,3) removeAt(0)
==> 1