From: daniel@...42.com Date: 2020-12-10T15:35:13+00:00 Subject: [ruby-core:101397] [Ruby master Feature#17357] `Queue#pop` should have a block form for clsoed queues Issue #17357 has been updated by Dan0042 (Daniel DeLorme). If this is accepted I think it would be good to have the same API as Hash#fetch, with both argument and block forms. For consistency. ---------------------------------------- Feature #17357: `Queue#pop` should have a block form for clsoed queues https://bugs.ruby-lang.org/issues/17357#change-89157 * Author: marcandre (Marc-Andre Lafortune) * Status: Open * Priority: Normal ---------------------------------------- It is currently difficult to reliably distinguish a `nil` value in a queue from the `nil` that is returned when a Queue is closed: ```ruby n = 100_000 result = [] t2 = Thread.new { n.times { Thread.pass }} # to make things less predictable n.times.count do q = Queue.new t = Thread.new { q.pop; result << q.closed? } q << nil q.close t.join end puts result.count(true) # => some number usually > 9990 and < 10000 ```` To be completely sure, one needs a Mutex or wrap/unwrap `nil` values. `Queue#pop` should offer a surefire way to handle closed queues. I propose that an optional block be called in this case: ```ruby q = Queue.new.close q.pop # => nil q.pop { :closed } # => :closed ```` Proposed PR: https://github.com/ruby/ruby/pull/3830 -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>