Bug #8641
closedEnumerator size argument is either mis-documented or should accept any callable
Description
I ran into this while wrapping Enumerators around Queues. The Enumerator docs state:
- The optional parameter can be used to specify how to calculate the size
- in a lazy fashion (see Enumerator#size). It can either be a value or
- a callable object.
However:
require 'thread'
q = Queue.new
eq = Enumerator.new(q.method(:size)) do |y|
loop do
y << q.pop
end
end
eq.size # =>
~> -:3:in `initialize': no implicit conversion of Method into Integer (TypeError)¶
~> from -:3:in `new'¶
~> from -:3:in `'¶
It looks like the size can't be any callable; it must be Proc a or an Integer. The code uses rb_obj_is_proc().
Instinctively I'd say that the documentation has it right and it ought to take any callable. But if there's some reason it's limited to Procs, the docs should be changed.
If anyone can point me in the right direction I'm happy to do the legwork on this.
Updated by marcandre (Marc-Andre Lafortune) over 11 years ago
- Category set to core
- Assignee set to marcandre (Marc-Andre Lafortune)
- Target version set to 2.1.0
Instinctively I'd say that the documentation has it right and it ought to take any callable.
Agreed, I'll address this.
Thanks
Updated by avdi (Avdi Grimm) over 11 years ago
Thanks Marc. Because I really really want to learn how to do this stuff, I went ahead cargo-culted a fix here: https://github.com/ruby/ruby/pull/362
This is my very first attempt at hacking Ruby C code. I don't expect this to be merged in, but I would LOVE some feedback so I can get better at this. Thank you!
Updated by marcandre (Marc-Andre Lafortune) about 11 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r42698.
Avdi, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
-
enumerator.c: Allow Enumerator size argument to be any callable.
Patch by Avdi Grimm. [bug #8641] [ruby-core:56032] [fix GH-362] -
test/ruby/test_enumerator.rb: Test for above