Type:
Class
Constants:
InspectKey : :__inspect_key__

Set implements a collection of unordered values with no duplicates. This is a hybrid of Array's intuitive inter-operation facilities and Hash's fast lookup.

The equality of each couple of elements is determined according to Object#eql? and Object#hash, since Set uses Hash as storage.

Set is easy to use with Enumerable objects (implementing each). Most of the initializer methods and binary operators accept generic Enumerable objects besides sets and arrays. An Enumerable object can be converted to Set using the to_set method.

Comparison

The comparison operators <, >, <= and >= are implemented as shorthand for the {proper_,}{subset?,superset?} methods. However, the <=> operator is intentionally left out because not every pair of sets is comparable. ({x,y} vs. {x,z} for example)

Example

1
2
3
4
5
6
7
8
require 'set'
s1 = Set.new [1, 2]                   # -> #<Set: {1, 2}>
s2 = [1, 2].to_set                    # -> #<Set: {1, 2}>
s1 == s2                              # -> true
s1.add("foo")                         # -> #<Set: {1, 2, "foo"}>
s1.merge([2, 6])                      # -> #<Set: {6, 1, 2, "foo"}>
s1.subset? s2                         # -> false
s2.subset? s1                         # -> true

Contact

1
- Akinori MUSHA <knu@iDaemons.org> (current maintainer)
+
  • References/Ruby on Rails/Ruby/Classes/Set

+(enum) Instance Public methods Alias for:

2025-01-10 15:47:30
union
  • References/Ruby on Rails/Ruby/Classes/Set

union(enum) Instance Public methods Alias for:

2025-01-10 15:47:30
collect!
  • References/Ruby on Rails/Ruby/Classes/Set

collect!() Instance Public methods Replaces the elements with ones returned

2025-01-10 15:47:30
member?
  • References/Ruby on Rails/Ruby/Classes/Set

member?(o) Instance Public methods Alias for:

2025-01-10 15:47:30
initialize_copy
  • References/Ruby on Rails/Ruby/Classes/Set

initialize_copy(orig) Instance Public methods Copy internal hash.

2025-01-10 15:47:30
empty?
  • References/Ruby on Rails/Ruby/Classes/Set

empty?() Instance Public methods Returns true if the set contains no elements

2025-01-10 15:47:30
>
  • References/Ruby on Rails/Ruby/Classes/Set

>(set) Instance Public methods Alias for:

2025-01-10 15:47:30
intersection
  • References/Ruby on Rails/Ruby/Classes/Set

intersection(enum) Instance Public methods Alias for:

2025-01-10 15:47:30
keep_if
  • References/Ruby on Rails/Ruby/Classes/Set

keep_if() Instance Public methods Deletes every element of the set for which

2025-01-10 15:47:30
to_a
  • References/Ruby on Rails/Ruby/Classes/Set

to_a() Instance Public methods Converts the set to an array. The order of elements

2025-01-10 15:47:30