リストのn番目の要素を見つける3つの関数があります。
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)
私の意見では、最初の関数は最も簡潔であるため、最良の実装です。しかし、他の2つの実装について、それらを好ましいものにするものはありますか?また、拡張機能として、ガード、if-then-elseステートメント、ケースのいずれを使用するかを選択しますか?
case compare a 1 of ...
case
、あなたが使用した場合の文をcase compare a 0 of LT -> ... | EQ -> ... | GT -> ...