Ho tre funzioni che trovano l'ennesimo elemento di una lista:
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)
A mio parere, la prima funzione è la migliore implementazione perché è la più concisa. Ma c'è qualcosa nelle altre due implementazioni che le renderebbe preferibili? E per estensione, come sceglieresti tra l'uso di guardie, dichiarazioni if-then-else e casi?
case compare a 1 of ...
case
istruzioni annidate se hai usatocase compare a 0 of LT -> ... | EQ -> ... | GT -> ...