Multiple applications of a function

Mark Carroll mark@chaos.x-philes.com
Sun, 16 Sep 2001 10:52:07 -0400 (EDT)


To multiply apply a function, I'm currently using:

	multiplyApply f n a = (iterate f a) !! n

...is there a Prelude function I've missed that already does this?
Could I be doing this better?

-- Mark