I always wrote my list-producing recursive functions in this format:
recursiveFunc :: [a] -> [b]
recursiveFunc (x:xs) = [change x] ++ resursiveFunc xs where
change :: a -> b
change x = ...
I realize any function like the above could be written for the a -> b case and then simply maped over a set [a], but please take this watered-down situation as an example.
HLint suggests replacing [change x] ++ recursiveFunc xs with change x : recursiveFunc xs.
Is this suggestion purely aesthetic, or is there some effect on how Haskell executes the function?
++will justconsonce and then quit, but it's a very roundabout way to prepend a single value. – delnan Mar 1 '12 at 16:06