(unblocking-buffer? buff)
Returns true if a channel created with buff will never block. That is to say,
puts into this buffer will never cause the buffer to be full.
Source
(defn unblocking-buffer?
"Returns true if a channel created with buff will never block. That is to say,
puts into this buffer will never cause the buffer to be full. "
[buff]
(extends? impl/UnblockingBuffer (class buff)))