ClojureDocs

导航

命名空间

doall

clojure.core

自 1.0 起可用 (源代码)
  • (doall coll)
  • (doall n coll)
When lazy sequences are produced via functions that have side
effects, any effects other than those needed to produce the first
element in the seq do not occur until the seq is consumed. doall can
be used to force any effects. Walks through the successive nexts of
the seq, retains the head and returns it, thus causing the entire
seq to reside in memory at one time.