Replace unnecessary usize::try_from
s with as
casts
#1344
Labels
good first issue
Good for newcomers
low priority
Issues that we would like to address at some point in the future
performance
Replace
usize::try_from
s that were there to avoid overflow for lengths with uncheckedas
casts,as we now bounds check, and overflow here is fine.
The text was updated successfully, but these errors were encountered: