Mam trzy funkcje, które znajdują n-ty element listy:
nthElement :: [a] -> Int -> Maybe a
nthElement [] a = Nothing
nthElement (x:xs) a | a <= 0 = Nothing
| a == 1 = Just x
| a > 1 = nthElement xs (a-1)
nthElementIf :: [a] -> Int -> Maybe a
nthElementIf [] a = Nothing
nthElementIf (x:xs) a = if a <= 1
then if a <= 0
then Nothing
else Just x -- a == 1
else nthElementIf xs (a-1)
nthElementCases :: [a] -> Int -> Maybe a
nthElementCases [] a = Nothing
nthElementCases (x:xs) a = case a <= 0 of
True -> Nothing
False -> case a == 1 of
True -> Just x
False -> nthElementCases xs (a-1)
Moim zdaniem pierwsza funkcja jest najlepszą implementacją, ponieważ jest najbardziej zwięzła. Ale czy jest coś w pozostałych dwóch implementacjach, co sprawiłoby, że byłyby lepsze? A co za tym idzie, jak wybrałbyś między używaniem strażników, stwierdzeniami if-to-else i przypadkami?
case
instrukcje, jeśli użyłeścase compare a 0 of LT -> ... | EQ -> ... | GT -> ...