Tagged Questions
7
votes
2answers
761 views
Ruby generators vs Python generators
I've been researching the similarities/differences between Ruby and Python generators (known as Enumerators in Ruby), and so far as i can tell they're pretty much equivalent.
However one difference ...
7
votes
7answers
4k views
escaping the .each { } iteration early in Ruby
code:
c = 0
items.each { |i|
puts i.to_s
# if c > 9 escape the each iteration early - and do not repeat
c++
}
I want to grab the first 10 items then leave the "each" ...
6
votes
3answers
135 views
Ruby: Manipulate Iterators?
I'm having teething problems with Ruby, with regards to creating single-direction, lazily-evaluated, potentially-infinite iterators. Basically, I'm trying to use Ruby like I'd use Haskell lists and, ...
4
votes
1answer
50 views
Why does Enumerator.new require a “yielder” object?
Consider a simple Enumerator like this:
natural_numbers = Enumerator.new do |yielder|
number = 1
loop do
yielder.yield number
number += 1
end
end
My question is: Why does ruby require ...
3
votes
5answers
168 views
Ruby - Compare two Enumerators elegantly
I've got two long streams of numbers coming from two different sources (binary data) in Ruby (1.9.2).
The two sources are encapsulated in the form of two Enumerators.
I want to check that the two ...
3
votes
2answers
231 views
Ruby Enumerator - Why Finish with Exception?
Iterating a block in Ruby is simple enough - it finishes cleanly and proceeds on to the rest of the code.
Iterating with an Enumerator, on the other hand, is a bit more confusing. If you call :each ...
2
votes
1answer
44 views
How do I overload ***each*** to establish an desired ordering
This is similar to question posted in Overload each method with order but with the difference that I would like to have all associated enumerable methods supported without redefinition.
Using a ...
2
votes
2answers
83 views
How to implement an enumerator in Ruby?
For example:
a = [1,2,3,4,5]
a.delete_if { |x| x > 3 }
is equivalent to:
a = [1,2,3,4,5]
a.delete_if.each.each.each.each { |x| x > 3 }
I know a.delete_if returns an enumerator. But how ...
2
votes
1answer
113 views
How to create custom iterator for Range
I'd like to create a subclass of Range in order to specify a step size other than 1 so I can do things like:
>> a = RangeWithStepSize.new(-1, 2, 0.5).each {|x| puts(x)}
-1.0
-0.5
0.0
0.5
1.0
...
1
vote
2answers
55 views
What is Enumerator object? (Created with String#gsub)
I have an attributes array as follows,
attributes = ["test, 2011", "photo", "198.1 x 198.1 cm", "Photo: Manu PK Full Screen"]
When i do this,
artist = attributes[-1].gsub("Photo:")
p artist
i ...
1
vote
3answers
75 views
How to improve this piece of code
I am running an online handbag store where handbags can be of four colors - black, brown, orange and red. I have notice that black handbags sell sooner than brown handbags and so forth. That means ...
1
vote
1answer
93 views
How to advance multiple Enumerators, or “But what about FizzBuzzBoozz?”
This is a rather unorthodox way to do the classic FizzBuzz exercise, but it's just to illustrate the problem (and hey, it might be fast if you want to fizzbuzz to a billion).
fizzer = ( Array.new( 2, ...
0
votes
3answers
164 views
How to run code with enumerator in Ruby 1.8?
I have code like this
my_enum = [1,2].to_enum
puts my_emum.next
and it doesn't work
I understand that the enumerator is available in Ruby 1.8 as an extension. How to install it?(I'm new to ruby)
0
votes
1answer
153 views
Ruby Enumeration and RETURN_ENUMERATOR - Questions Regarding Ruby's C Internals
I'm a bit confused about how Ruby handles the creation of Enumerators. Block-based iteration makes sense and is working for me; I am still confused how the return of an Enumerator is supposed to ...