Arc Forumnew | comments | leaders | submitlogin
3 points by fallintothis 4016 days ago | link | parent

Slick! But just to play human lint tool:

  (~all t (map dead threads))
is the same as

  (~all dead threads)
and

  (while (~all dead threads)
    (sleep 1))
is the same as

  (until (all dead threads)
    (sleep 1))
which may read slightly better.


2 points by akkartik 4016 days ago | link

Thanks! So weird that I missed that, especially the first.

-----