Comment on Secure Rust GuidelinesparentComments−masklinn6yIn practice, you don't really need one - the safe alternative to "xs !! n" is pattern-matching on the result of "drop n xs", as that's [] if xs has ≤n elements:Great so instead of `xs !! n` you're supposed to write case drop n xs of [] -> … x :: _ -> … that seems… less than likely?
Comments
Great so instead of `xs !! n` you're supposed to write
that seems… less than likely?