list map added by Kucuq on Sat Apr 14 17:12:29 2012

(define (lmap func listoflists)
	(map 
		(lambda (list)
			(apply func list))
		listoflists))