[#100689] [Ruby master Feature#17303] Make webrick to bundled gems or remove from stdlib — hsbt@...
Issue #17303 has been reported by hsbt (Hiroshi SHIBATA).
11 messages
2020/11/02
[#100852] [Ruby master Feature#17326] Add Kernel#must! to the standard library — zimmerman.jake@...
Issue #17326 has been reported by jez (Jake Zimmerman).
24 messages
2020/11/14
[#100930] [Ruby master Feature#17333] Enumerable#many? — masafumi.o1988@...
Issue #17333 has been reported by okuramasafumi (Masafumi OKURA).
10 messages
2020/11/18
[#101071] [Ruby master Feature#17342] Hash#fetch_set — hunter_spawn@...
Issue #17342 has been reported by MaxLap (Maxime Lapointe).
26 messages
2020/11/25
[ruby-core:100979] [Ruby master Feature#17331] Let Fiber#raise work with transferring fibers
From:
nicholas.evans@...
Date:
2020-11-20 14:27:46 UTC
List:
ruby-core #100979
Issue #17331 has been updated by nevans (Nicholas Evans). Description updated I added an alternate implicit implementation at Samuel Williams's request: https://github.com/ruby/ruby/pull/3795 It will automatically choose between `rb_fiber_transfer_kw` for transferring fibers and `rb_fiber_resume_kw` for yielding fibers. It will not work on resuming fibers. I prefer the explicit version. ---------------------------------------- Feature #17331: Let Fiber#raise work with transferring fibers https://bugs.ruby-lang.org/issues/17331#change-88642 * Author: nevans (Nicholas Evans) * Status: Open * Priority: Normal ---------------------------------------- This seems like a feature that would be just as useful for transferring fibers as it is for yielding fibers. I'm using a kwarg, so this is not automatic; the caller must know how to handle the fiber. If you call a yielding fiber with `transfer: true` or a transferring fiber without `transfer: true`, a `FiberError` will be raised. ```ruby yielding_fiber.raise "message" transferring_fiber.raise "message", transfer: true ``` Implementation: https://github.com/ruby/ruby/pull/3783 Alternate implicit implementation: https://github.com/ruby/ruby/pull/3795 -- 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>