From: halogenandtoast@... Date: 2016-09-05T02:58:11+00:00 Subject: [ruby-core:77152] [Ruby trunk Feature#12719] `Struct#merge` for partial updates Issue #12719 has been updated by Matthew Mongeau. File struct_merge.patch added Subject changed from `Struct#|` for partial updates to `Struct#merge` for partial updates Description updated Update ChangeLog ---------------------------------------- Feature #12719: `Struct#merge` for partial updates https://bugs.ruby-lang.org/issues/12719#change-60369 * Author: Matthew Mongeau * Status: Open * Priority: Normal * Assignee: ---------------------------------------- Other languages have operators for performing partial updates on maps. I feel like Struct could be more useful if it provided an easy way of performing partial (or full) updates. After the change you can do the following: ~~~ ruby Point = Struct.new(:x, :y) p = Point.new(1, 2) p2 = p.merge(y: 4) p3 = p2.merge(x: 10) p.inspect # => # p2.inspect # => # p3.inspect # => # p.merge!("x" => 9) p.inspect # => # ~~~ ---Files-------------------------------- merge_bang.patch (2.92 KB) struct_merge.patch (2.93 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: