Project

General

Profile

Actions

Bug #116

closed

SortedSet#each does not return self

Added by NoKarma (Arthur Schreiber) almost 16 years ago. Updated almost 13 years ago.

Status:
Closed
Target version:
-
ruby -v:
[ruby-dev:35002]

Description

=begin
irb(main):001:0> require "set"
=> true
irb(main):002:0> Set[1, 2, 3].each {}
=> #<Set: {1, 2, 3}>
irb(main):003:0> SortedSet[1, 2, 3].each {}
=> [1, 2, 3]

This behaviour deviates from what Array#each and Set#each do.
=end


Files

sorted_set_each.patch (298 Bytes) sorted_set_each.patch NoKarma (Arthur Schreiber), 06/09/2008 02:38 AM
Actions #1

Updated by knu (Akinori MUSHA) almost 16 years ago

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

=begin
Fixed in SVN HEAD. Thanks!
=end

Actions #2

Updated by Anonymous almost 16 years ago

=begin
Issue #116 has been updated by Akinori MUSHA.

Status changed from Open to Closed
% Done changed from 0 to 100

Fixed in SVN HEAD. Thanks!

Bug #116: SortedSet#each does not return self
http://redmine.ruby-lang.org/issues/show/116

Author: Arthur Schreiber
Status: Closed
Priority: Normal
Assigned to: Akinori MUSHA
Category:
Target version:

irb(main):001:0> require "set"
=> true
irb(main):002:0> Set[1, 2, 3].each {}
=> #<Set: {1, 2, 3}>
irb(main):003:0> SortedSet[1, 2, 3].each {}
=> [1, 2, 3]

This behaviour deviates from what Array#each and Set#each do.


You have received this notification because you have either subscribed to it, or are involved in it.
To change your notification preferences, please click here: http://redmine.ruby-lang.org/my/account

=end

Actions

Also available in: Atom PDF

Like0
Like0Like0