vote up 1 vote down star

I'm trying to come up with an elegant way of creating a list from a function that yields values in both Python and Ruby.

In Python:

def foo(x):
    for i in range(x):
        if bar(i): yield i 
result = list(foo(100))

In Ruby:

def foo(x)
  x.times {|i| yield i if bar(i)}
end
result = []
foo(100) {|x| result << x}

Although I love working in both languages, I've always been a bit bothered by the Ruby version having to initialize the list and then fill it. Python's yield results in simple iteration, which is great. Ruby's yield invokes a block, which is also great, but when I just want to fill a list, it feels kinda clunky.

Is there a more elegant Ruby way?

UPDATE Reworked the example to show that the number of values yielded from the function isn't necessarily equal to x.

flag

60% accept rate
Ruby and Python's "yield"s are semantically different. Python's yield is almost closer to ruby's Fiber.yield than ruby's yield. – rampion Mar 4 at 1:56

6 Answers

vote up 6 vote down check

So, for your new example, try this:

def foo(x)
  (1..x).to_a.select { |i| bar(i) }
end

Basically, unless you're writing an iterator of your own, you don't need yield very often in Ruby. You'll probably do a lot better if you stop trying to write Python idioms using Ruby syntax.

link|flag
Agreed. Both languages have a completely different approach to equivalent problems in a lot of cases. – bojo Mar 4 at 9:29
You don't even need the to_a — Range includes Enumerable. Just (1..x).select {|i| bar i}. – Chuck Mar 5 at 0:23
vote up 0 vote down

yield means different things ruby and python. In ruby, you have to specify a callback block if I remember correctly, whereas generators in python can be passed around and yield to whoever holds them.

link|flag
vote up 1 vote down

For the Python list comprehension version posted by stbuton use xrange instead of range if you want a generator. range will create the entire list in memory.

link|flag
Not in python 3.0.. – John Fouhy Mar 4 at 22:29
vote up 2 vote down

For the Python version I would use a generator expression like:

(i for i in range(x) if bar(i))

Or for this specific case of filtering values, even more simply

itertools.ifilter(bar,range(x))
link|flag
list comprehensions ftw! – Ian Terrell Mar 4 at 14:03
vote up 1 vote down
def squares(x)
  (1..x).to_a.map { |i| i * i }
end

Anything involving a range of values is best handled with, well, a range, rather than times and array generation.

link|flag
The example was contrived. The question pertains to any function that yields values, whether a range is involved or not. – jcrossley3 Mar 4 at 2:05
vote up 1 vote down

I know it's not exactly what you were looking for, but a more elegant way to express your example in ruby is:

result = Array.new(100) {|x| x*x}
link|flag
You're right, that's not quite what I'm looking for. The only reason I would be yield'ing from a method is if I didn't know exactly how many values would be yield'ed. – jcrossley3 Mar 4 at 2:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.