map f (map g xs)
= map (f.g) xs
map (\x -> (x+1)/2) xs
= map (/2) (map (+1) xs) |
map f (map g xs)
= map (f.g) xs
map (\x -> (x+1)/2) xs
= map (/2) (map (+1) xs)
This entry was posted on Thursday, August 9th, 2007 at 8:36 pm and is filed under Uncategorized. You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.