kino/src/Misc.hs

8 lines
130 B
Haskell
Raw Normal View History

2021-09-14 17:06:34 +02:00
module Misc where
2021-09-14 18:24:05 +02:00
infixl 3 !?
2021-09-14 17:06:34 +02:00
(!?) :: [a] -> Int -> Maybe a
[] !? i = Nothing
(x:xs) !? 0 = Just x
(x:xs) !? n = xs !? (n-1)