:: [a] -> Int -> Maybe a -package:errors -is:exact package:extra

A total variant of the list index function (!!).
[2,3,4] !? 1    == Just 3
[2,3,4] !? (-1) == Nothing
[]      !? 0    == Nothing