map' (a:as) = f a : map' asmap' [] = []map f x = map' x wheremap f (a:as) = f a : map f asHello,
Is there any difference in efficiency between these two functions, when compiled with all optimizations?
map f [] = []
andThanks,Andrew
_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe