Is there a library function available in Haskell to compose a function with itself n times?
For example I have this function:
func :: a -> a
and I want to do this:
func . func . func . func . func . func , ...
(up to n times, where n is only known at runtime).
Note that the iterate function would not be appropriate for what I am doing, since I do not care about any intermediate results.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…