Skip to main content

delay

macrov1.0

clojure.core/delay

Available in:BBCLJCLJS
(delay [& body])
Takes a body of expressions and yields a Delay object that will invoke the body only the first time it is forced (with force or deref/@), and will cache the result and return it on all subsequent force calls. See also - realized?

No examples yet. Be the first to add one!