|
|
|
|
|
by masklinn
2275 days ago
|
|
> In 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? |
|