Could any Haskell experts out there please clarify something for me:
Given a simplified example of a function match which is supposed to return a matched value from a list, which is the "better" function definition to use Maybe or return [] (an empty list)?
That is:
match :: String -> [String] -> Maybe String
or
match :: String -> [String] -> [String] {- possibly empty, if no match -}
I prefer the first version for reasons of clarity, but I would be interested to know whether there is a convention for this sort of thing.