I'm a big fan of the Clojure / functional approach of programming with immutable values.
However I'm unsure if a delay should be considered as an immutable value (assuming that you delay a pure function). I'm particularly interested in the case where there are one or more delays in a larger immutable data structure.
e.g. a vector containing a delay:
[1 2 (delay (reduce + (range 1000)))]
As far as I can see this behaves as if it is an immutable value in the sense that you can't see the result of the delay until you force its evaluation - and then the result is cached and the value can never change after that.
Are there any issues with treating a delay as an immutable value in this way?
