From: eregontp@... Date: 2015-06-30T08:35:15+00:00 Subject: [ruby-core:69813] [Ruby trunk - Feature #6284] Add composition for procs Issue #6284 has been updated by Benoit Daloze. Martin D��rst wrote: > I'm teaching Haskell in a graduate class, so I'm quite familiar with function composition and use it a lot, but the original example isn't convincing at all. For me, in Ruby, something like val.strip.capitalize reads much, much better than some artificially forced function composition. If there were a method String#prepend, it would be even more natural: val.strip.capitalize.prepend('Title: '). > > If there are better examples that feel more natural in Ruby, please post them here. There is String#prepend, but it mutates the receiver. ---------------------------------------- Feature #6284: Add composition for procs https://bugs.ruby-lang.org/issues/6284#change-53211 * Author: Pablo Herrero * Status: Feedback * Priority: Normal * Assignee: Yukihiro Matsumoto ---------------------------------------- =begin It would be nice to be able to compose procs like functions in functional programming languages: to_camel = :capitalize.to_proc add_header = ->val {"Title: " + val} format_as_title = add_header << to_camel << :strip instead of: format_as_title = lambda {|val| "Title: " + val.strip.capitalize } It's pretty easy to implement in pure ruby: class Proc def << block proc { |*args| self.call( block.to_proc.call(*args) ) } end end =end ---Files-------------------------------- 0002-proc.c-Implement-Method-for-Method-composition.patch (2.71 KB) 0001-proc.c-Implement-Proc-for-Proc-composition.patch (3.73 KB) 0003-proc.c-Support-any-callable-when-composing-Procs.patch (4.01 KB) -- https://bugs.ruby-lang.org/