[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Enumerable Integer? Nah. Integer#times Enumerator!

Trans

12/27/2007 9:55:00 PM

Just a little FYI.

Not too long ago I noted this suggestion:

class Integer
alias_method :each, :times
include Enumerable
end

Which is kind of cool in that allows some convenient statements like

10.collect { |i| "No. #{i}" }
10.select { |i| i % 3 == 0 }

And so forth. This is nice, but, of course, the downside is that this
clutters up Integer with all these Enumerable methods.

Thankfully, and this is the FYI, Ruby 1.9 has Integer#times returning
an Enumerator. So most of these same functionality can be had just by
inserting #times in between:

10.times.collect { |i| "No. #{i}" }
10.times.select { |i| i % 3 == 0 }

This is great IMHO, so I thought I'd share. My only aside is the
thought that perhaps there's still a good reason to add Integer#to_a --
to save us the intermediate object of times.to_a. Or is that too much
of a YAGNI?

T.

5 Answers

George

12/28/2007 12:51:00 PM

0

On Dec 28, 2007 8:55 AM, Trans <transfire@gmail.com> wrote:
> Just a little FYI.
>
> Not too long ago I noted this suggestion:
>
> class Integer
> alias_method :each, :times
> include Enumerable
> end
>
> Which is kind of cool in that allows some convenient statements like
>
> 10.collect { |i| "No. #{i}" }
> 10.select { |i| i % 3 == 0 }
>
> And so forth. This is nice, but, of course, the downside is that this
> clutters up Integer with all these Enumerable methods.
>
> Thankfully, and this is the FYI, Ruby 1.9 has Integer#times returning
> an Enumerator. So most of these same functionality can be had just by
> inserting #times in between:
>
> 10.times.collect { |i| "No. #{i}" }
> 10.times.select { |i| i % 3 == 0 }
>
> This is great IMHO, so I thought I'd share. My only aside is the
> thought that perhaps there's still a good reason to add Integer#to_a --
> to save us the intermediate object of times.to_a. Or is that too much
> of a YAGNI?

Hi Trans,

Thanks for the FYI. For what it's worth, I can't say I'm really a fan
of 10.times.select--it doesn't seem very clear to me what's being
iterated over. 10.select even less so. I think good ol'
(0...10).select looks better. *shrug*

Similarly, 10.to_a returning [0,1,...,9] doesn't really feel right to
me. In fact, I'd probably expect 10.to_a to do the same as Array(10)
(and changing the latter may well break things).

Just my thoughts.

Regards,
George.

Robert Klemme

12/28/2007 5:02:00 PM

0

2007/12/27, Trans <transfire@gmail.com>:
> Just a little FYI.
>
> Not too long ago I noted this suggestion:
>
> class Integer
> alias_method :each, :times
> include Enumerable
> end
>
> Which is kind of cool in that allows some convenient statements like
>
> 10.collect { |i| "No. #{i}" }
> 10.select { |i| i % 3 == 0 }
>
> And so forth. This is nice, but, of course, the downside is that this
> clutters up Integer with all these Enumerable methods.

Well, in the old days (1.8.x) you could do this which does not look
too different from the 1.9 solution you show below

10.to_enum(:times).collect { |i| "No. #{i}" }
10.to_enum(:times).select { |i| i % 3 == 0 }

> Thankfully, and this is the FYI, Ruby 1.9 has Integer#times returning
> an Enumerator. So most of these same functionality can be had just by
> inserting #times in between:
>
> 10.times.collect { |i| "No. #{i}" }
> 10.times.select { |i| i % 3 == 0 }
>
> This is great IMHO, so I thought I'd share. My only aside is the
> thought that perhaps there's still a good reason to add Integer#to_a --
> to save us the intermediate object of times.to_a. Or is that too much
> of a YAGNI?

I'd rather use 10.times.to_a instead of 10.to_a because the latter
seems too unobvious to me.

Kind regards

robert

--
use.inject do |as, often| as.you_can - without end

Trans

12/28/2007 6:30:00 PM

0



On Dec 28, 12:01 pm, "Robert Klemme" <shortcut...@googlemail.com>
wrote:

> I'd rather use 10.times.to_a instead of 10.to_a because the latter
> seems too unobvious to me.

Understandable. But obvious isn't always the most important factor. A
straight #to_a is vastly more efficient.

T.

Robert Klemme

12/29/2007 10:03:00 AM

0

On 28.12.2007 19:30, Trans wrote:
>
> On Dec 28, 12:01 pm, "Robert Klemme" <shortcut...@googlemail.com>
> wrote:
>
>> I'd rather use 10.times.to_a instead of 10.to_a because the latter
>> seems too unobvious to me.
>
> Understandable. But obvious isn't always the most important factor. A
> straight #to_a is vastly more efficient.

Good point. I'd like to point out that the overhead completely depends
on the number where #to_a is invoked on. For small numbers the overhead
is likely significant. But for large numbers, especially BigNums I'd
say the overhead is negligible. But I guess, in reality this would be
more often used with rather smallish numbers. So yes, this should be
taken into account.

Kind regards

robert

Rick DeNatale

12/29/2007 1:23:00 PM

0

On Dec 28, 2007 1:30 PM, Trans <transfire@gmail.com> wrote:
>
>
> On Dec 28, 12:01 pm, "Robert Klemme" <shortcut...@googlemail.com>
> wrote:
>
> > I'd rather use 10.times.to_a instead of 10.to_a because the latter
> > seems too unobvious to me.
>
> Understandable. But obvious isn't always the most important factor. A
> straight #to_a is vastly more efficient.

Keep in mind that in 1.8

10.to_a #=> [10]

which also gives a deprecation warning, because in 1.9 Object#to_a and
several other implementations of to_a have been removed.




--
Rick DeNatale

My blog on Ruby
http://talklikeaduck.denh...