:: [a] -> Int -> a package:tidal-core

like !! selects nth element from xs, but wraps over at the end of xs
>>> map ((!!!) [1,3,5]) [0,1,2,3,4,5]
[1,3,5,1,3,5]
Safer version of !! -