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
Self-explanatory. Subtask: replace all instances of &slice[n..m] with slice.get(n..m) and similar slice operations. This makes it much more explicit when slice or Vec accesses might panic.
Self-explanatory. Subtask: replace all instances of
&slice[n..m]withslice.get(n..m)and similar slice operations. This makes it much more explicit when slice orVecaccesses might panic.