[#66126] Creation/Conversion methods/functions table for Ruby types — SASADA Koichi <ko1@...>
Hi,
5 messages
2014/11/07
[#66248] [ruby-trunk - Feature #10423] [PATCH] opt_str_lit*: avoid literal string allocations — normalperson@...
Issue #10423 has been updated by Eric Wong.
3 messages
2014/11/13
[#66595] [ruby-trunk - Bug #10557] [Open] Block not given when the argument is a string — bartosz@...
Issue #10557 has been reported by Bartosz Kopinski.
3 messages
2014/11/30
[ruby-core:66533] [ruby-trunk - Feature #6594] Integrated Functor
From:
nobu@...
Date:
2014-11-27 17:27:42 UTC
List:
ruby-core #66533
Issue #6594 has been updated by Nobuyoshi Nakada.
Description updated
----------------------------------------
Feature #6594: Integrated Functor
https://bugs.ruby-lang.org/issues/6594#change-50148
* Author: Thomas Sawyer
* Status: Assigned
* Priority: Low
* Assignee: Yukihiro Matsumoto
* Category: core
* Target version: Next Major
----------------------------------------
I know the developers meeting is coming up so I'd like to get a few ideas I've had sitting in the wings out in the air before then.
One the more useful is the idea of integrating Functors directly into the language. "Functor" is the term I use for "higher-order function".
I blogged about this idea and you can read it here: http://trans.github.com/2011-09-07-ruby-heart-higher-order-functions/
The super short version is this:
~~~ruby
def f => op, arg
arg.send(__op__, arg)
end
f + 3 #=> 6
f * 3 #=> 9
~~~
Another example:
~~~ruby
class String
def file => op, *args
File.send(__op__, self, *args)
end
end
"README.rdoc".file.mtime #=> 2012-06-14 12:34:45 -0400
~~~
I'm using `=>` as means of indicating a higher-order function. Of course another syntax could be used if this won't fly. The important thing is the idea of higher-order functions being integrated directly into the language. Doing this without that integration requires the creation of an intermediate object for each call which is very inefficient.
---Files--------------------------------
6594.pdf (77.8 KB)
--
https://bugs.ruby-lang.org/