orz
orz copied to clipboard
Remove unsafe blocks without hurting performance
is there any good idea for removing these unsafe code?
is there any good idea for removing these unsafe code?
@18o most unsafe is used for avoiding boundary checks by using unchecked_index. i think many of them are not performance critical and can be replaced with normal slice indexing.