Worked more on optimizing delegates with @jhawthorn today. There are more edge cases that I thought there would be (of course), but I'm testing it in work CI rn. Anyway, I really hope we can land this in Ruby 3.4 (I'm confident we can)

@tenderlove @jhawthorn Oh, I thought maybe you were working on making stdlib forwardable or delegator things that regular ruby users would use. But that’s good too!

(Is it yet time to finally deprecate delegator? I am skeptical anyone ever used it, except JEG2 when writing the doc.)

@josephholsten @jhawthorn Rails uses SimpleDelegator (I found while working on these patches 😅). Delegate methods seem to be pretty popular internally to Rails, though most of them are using Rails' own delegate
@tenderlove @jhawthorn Wow! I’ve generally stuck with forwardable unless I had some other need for active support, but it’s good to know something other than just AS delegation exists in the wild.