Project

General

Profile

Actions

Bug #6053

closed

Enumerator#rewind goes to beginning instead of decrementing one step.

Added by tyre77 (Chris Maddox) about 12 years ago. Updated about 12 years ago.

Status:
Closed
Assignee:
-
Target version:
ruby -v:
ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin11.3.0]
Backport:
[ruby-core:42767]

Description

From the ruby docs:
rewind → e
Rewinds the enumeration sequence by one step.

In practice, however, it fully rewinds (either change documentation or have it do what it says. Going back one step is nice though):
irb(main):001:0> a = [1,2,3,4]
=> [1, 2, 3, 4]
irb(main):002:0> b = a.to_enum
=> #<Enumerator: [1, 2, 3, 4]:each>
irb(main):007:0> b.next
=> 1
irb(main):008:0> b.next
=> 2
irb(main):009:0> b.next
=> 3
irb(main):010:0> b.rewind
=> #<Enumerator: [1, 2, 3, 4]:each>
irb(main):011:0> b.next
=> 1

Actions

Also available in: Atom PDF

Like0
Like0Like0