orthecreedence / blackbird

Common Lisp promise implementation (successor to cl-async-future)
83 stars 10 forks source link

amap doent return if promise-list is nil #20

Closed nightshade427 closed 9 years ago

nightshade427 commented 9 years ago

If you do:

(alet ((result (amap #'do-stuff my-list)))
  (format t "~&done~&"))

"done" will only print if my-list has content, if its nil it will never print anything or finish the future.

nightshade427 commented 9 years ago

https://github.com/orthecreedence/blackbird/pull/21