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
Currently, if you pass an index and a count which overflow the edge of the backing array to the Shift* methods, they react differently. ShiftLeft will throw an ArgumentException, whereas ShiftRight will throw an IndexOutOfRange exception.
Ideally, this behavior would be consistent.
The text was updated successfully, but these errors were encountered:
Currently, if you pass an index and a count which overflow the edge of the backing array to the
Shift*
methods, they react differently.ShiftLeft
will throw an ArgumentException, whereasShiftRight
will throw anIndexOutOfRange
exception.Ideally, this behavior would be consistent.
The text was updated successfully, but these errors were encountered: