Enumerable Integer? Nah. Integer#times Enumerator!

T

Trans

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.
 
G

George

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.
 
R

Robert Klemme

2007/12/27 said:
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
 
T

Trans

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.
 
R

Robert Klemme

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
 
R

Rick DeNatale

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,575
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top