2003-09-19 02:53:02 -04:00
|
|
|
#--
|
|
|
|
# set.rb - defines the Set class
|
|
|
|
#++
|
2013-05-20 09:28:32 -04:00
|
|
|
# Copyright (c) 2002-2013 Akinori MUSHA <knu@iDaemons.org>
|
2002-08-30 09:47:49 -04:00
|
|
|
#
|
2009-03-05 22:56:38 -05:00
|
|
|
# Documentation by Akinori MUSHA and Gavin Sinclair.
|
2002-08-30 09:47:49 -04:00
|
|
|
#
|
2003-09-19 02:53:02 -04:00
|
|
|
# All rights reserved. You can redistribute and/or modify it under the same
|
|
|
|
# terms as Ruby.
|
2002-08-30 09:47:49 -04:00
|
|
|
#
|
2003-09-19 02:53:02 -04:00
|
|
|
# $Id$
|
|
|
|
#
|
2009-03-05 22:56:38 -05:00
|
|
|
# == Overview
|
|
|
|
#
|
2003-10-17 09:16:03 -04:00
|
|
|
# This library provides the Set class, which deals with a collection
|
|
|
|
# of unordered values with no duplicates. It is a hybrid of Array's
|
|
|
|
# intuitive inter-operation facilities and Hash's fast lookup. If you
|
2013-07-31 01:58:09 -04:00
|
|
|
# need to keep values sorted in some order, use the SortedSet class.
|
2002-12-24 00:29:04 -05:00
|
|
|
#
|
2003-10-17 09:16:03 -04:00
|
|
|
# The method +to_set+ is added to Enumerable for convenience.
|
2002-12-24 00:29:04 -05:00
|
|
|
#
|
2009-05-01 03:46:23 -04:00
|
|
|
# See the Set and SortedSet documentation for examples of usage.
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2003-09-19 02:53:02 -04:00
|
|
|
|
|
|
|
#
|
2002-12-24 00:29:04 -05:00
|
|
|
# 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.
|
|
|
|
#
|
2007-03-19 22:09:10 -04:00
|
|
|
# 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.
|
2003-09-19 02:53:02 -04:00
|
|
|
#
|
2013-07-31 01:58:17 -04:00
|
|
|
# Set uses Hash as storage, so you must note the following points:
|
|
|
|
#
|
|
|
|
# * Equality of elements is determined according to Object#eql? and
|
|
|
|
# Object#hash.
|
|
|
|
# * Set assumes that the identity of each element does not change
|
|
|
|
# while it is stored. Modifying an element of a set will render the
|
|
|
|
# set to an unreliable state.
|
|
|
|
# * When a string is to be stored, a frozen copy of the string is
|
|
|
|
# stored instead unless the original string is already frozen.
|
|
|
|
#
|
2012-08-30 00:01:58 -04:00
|
|
|
# == 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)
|
|
|
|
#
|
2003-09-19 02:53:02 -04:00
|
|
|
# == Example
|
|
|
|
#
|
|
|
|
# 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"}>
|
2013-07-31 01:58:14 -04:00
|
|
|
# s1.merge([2, 6]) # -> #<Set: {1, 2, "foo", 6}>
|
2003-09-19 02:53:02 -04:00
|
|
|
# s1.subset? s2 # -> false
|
|
|
|
# s2.subset? s1 # -> true
|
|
|
|
#
|
2008-03-21 08:15:06 -04:00
|
|
|
# == Contact
|
|
|
|
#
|
|
|
|
# - Akinori MUSHA <knu@iDaemons.org> (current maintainer)
|
|
|
|
#
|
2002-08-30 09:47:49 -04:00
|
|
|
class Set
|
|
|
|
include Enumerable
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Creates a new set containing the given objects.
|
2002-08-30 09:47:49 -04:00
|
|
|
def self.[](*ary)
|
|
|
|
new(ary)
|
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Creates a new set containing the elements of the given enumerable
|
|
|
|
# object.
|
|
|
|
#
|
|
|
|
# If a block is given, the elements of enum are preprocessed by the
|
|
|
|
# given block.
|
2003-01-21 11:38:42 -05:00
|
|
|
def initialize(enum = nil, &block) # :yields: o
|
2015-02-11 14:04:16 -05:00
|
|
|
@hash ||= Hash.new(false)
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2002-09-07 06:48:14 -04:00
|
|
|
enum.nil? and return
|
|
|
|
|
2002-09-20 06:46:52 -04:00
|
|
|
if block
|
2010-02-11 12:38:05 -05:00
|
|
|
do_with_enum(enum) { |o| add(block[o]) }
|
2002-09-20 06:46:52 -04:00
|
|
|
else
|
|
|
|
merge(enum)
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2011-05-11 19:17:52 -04:00
|
|
|
def do_with_enum(enum, &block) # :nodoc:
|
2010-02-11 12:38:05 -05:00
|
|
|
if enum.respond_to?(:each_entry)
|
2014-08-06 07:28:21 -04:00
|
|
|
enum.each_entry(&block) if block
|
2010-02-11 12:38:05 -05:00
|
|
|
elsif enum.respond_to?(:each)
|
2014-08-06 07:28:21 -04:00
|
|
|
enum.each(&block) if block
|
2010-02-11 12:38:05 -05:00
|
|
|
else
|
|
|
|
raise ArgumentError, "value must be enumerable"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
private :do_with_enum
|
|
|
|
|
2014-08-06 06:13:34 -04:00
|
|
|
# Dup internal hash.
|
|
|
|
def initialize_dup(orig)
|
|
|
|
super
|
2012-09-01 05:51:48 -04:00
|
|
|
@hash = orig.instance_variable_get(:@hash).dup
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2014-08-06 06:13:34 -04:00
|
|
|
# Clone internal hash.
|
|
|
|
def initialize_clone(orig)
|
|
|
|
super
|
|
|
|
@hash = orig.instance_variable_get(:@hash).clone
|
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def freeze # :nodoc:
|
2007-03-19 22:09:10 -04:00
|
|
|
@hash.freeze
|
2013-06-01 05:01:16 -04:00
|
|
|
super
|
2007-03-19 22:09:10 -04:00
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def taint # :nodoc:
|
2007-03-19 22:09:10 -04:00
|
|
|
@hash.taint
|
2013-06-01 05:01:16 -04:00
|
|
|
super
|
2007-03-19 22:09:10 -04:00
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def untaint # :nodoc:
|
2007-03-19 22:09:10 -04:00
|
|
|
@hash.untaint
|
2013-06-01 05:01:16 -04:00
|
|
|
super
|
2007-03-19 22:09:10 -04:00
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Returns the number of elements.
|
2002-08-30 09:47:49 -04:00
|
|
|
def size
|
|
|
|
@hash.size
|
|
|
|
end
|
|
|
|
alias length size
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Returns true if the set contains no elements.
|
2002-08-30 09:47:49 -04:00
|
|
|
def empty?
|
|
|
|
@hash.empty?
|
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Removes all elements and returns self.
|
2002-08-30 09:47:49 -04:00
|
|
|
def clear
|
|
|
|
@hash.clear
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Replaces the contents of the set with the contents of the given
|
|
|
|
# enumerable object and returns self.
|
2002-08-30 09:47:49 -04:00
|
|
|
def replace(enum)
|
2010-10-10 05:45:36 -04:00
|
|
|
if enum.instance_of?(self.class)
|
|
|
|
@hash.replace(enum.instance_variable_get(:@hash))
|
2014-08-06 07:28:21 -04:00
|
|
|
self
|
2002-09-20 06:46:52 -04:00
|
|
|
else
|
2014-08-06 07:28:21 -04:00
|
|
|
do_with_enum(enum)
|
2002-09-20 06:46:52 -04:00
|
|
|
clear
|
2010-02-11 12:38:05 -05:00
|
|
|
merge(enum)
|
2002-09-20 06:46:52 -04:00
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2003-01-21 10:09:12 -05:00
|
|
|
# Converts the set to an array. The order of elements is uncertain.
|
2002-08-30 09:47:49 -04:00
|
|
|
def to_a
|
|
|
|
@hash.keys
|
|
|
|
end
|
|
|
|
|
2013-07-18 22:22:11 -04:00
|
|
|
# Returns self if no arguments are given. Otherwise, converts the
|
|
|
|
# set to another with klass.new(self, *args, &block).
|
|
|
|
#
|
|
|
|
# In subclasses, returns klass.new(self, *args, &block) unless
|
|
|
|
# overridden.
|
|
|
|
def to_set(klass = Set, *args, &block)
|
|
|
|
return self if instance_of?(Set) && klass == Set && block.nil? && args.empty?
|
|
|
|
klass.new(self, *args, &block)
|
|
|
|
end
|
|
|
|
|
2011-05-11 19:17:52 -04:00
|
|
|
def flatten_merge(set, seen = Set.new) # :nodoc:
|
2002-09-07 06:32:23 -04:00
|
|
|
set.each { |e|
|
|
|
|
if e.is_a?(Set)
|
2011-05-18 17:19:18 -04:00
|
|
|
if seen.include?(e_id = e.object_id)
|
|
|
|
raise ArgumentError, "tried to flatten recursive Set"
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 17:19:18 -04:00
|
|
|
seen.add(e_id)
|
|
|
|
flatten_merge(e, seen)
|
|
|
|
seen.delete(e_id)
|
2002-08-30 09:47:49 -04:00
|
|
|
else
|
2011-05-18 17:19:18 -04:00
|
|
|
add(e)
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2002-09-07 06:32:23 -04:00
|
|
|
self
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
2002-09-07 06:32:23 -04:00
|
|
|
protected :flatten_merge
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Returns a new set that is a copy of the set, flattening each
|
|
|
|
# containing set recursively.
|
2002-08-30 09:47:49 -04:00
|
|
|
def flatten
|
2002-10-02 12:45:35 -04:00
|
|
|
self.class.new.flatten_merge(self)
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Equivalent to Set#flatten, but replaces the receiver with the
|
|
|
|
# result in place. Returns nil if no modifications were made.
|
2002-08-30 09:47:49 -04:00
|
|
|
def flatten!
|
2015-11-16 02:29:37 -05:00
|
|
|
replace(flatten()) if any? { |e| e.is_a?(Set) }
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Returns true if the set contains the given object.
|
2015-02-16 20:47:28 -05:00
|
|
|
#
|
|
|
|
# Note that <code>include?</code> and <code>member?</code> do not test member
|
|
|
|
# equality using <code>==</code> as do other Enumerables.
|
|
|
|
#
|
|
|
|
# See also Enumerable#include?
|
2002-08-30 09:47:49 -04:00
|
|
|
def include?(o)
|
2015-02-11 14:04:16 -05:00
|
|
|
@hash[o]
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
alias member? include?
|
|
|
|
|
2003-01-21 10:15:26 -05:00
|
|
|
# Returns true if the set is a superset of the given set.
|
2002-11-09 13:52:04 -05:00
|
|
|
def superset?(set)
|
2015-11-16 01:43:43 -05:00
|
|
|
case
|
|
|
|
when set.instance_of?(self.class)
|
|
|
|
@hash >= set.instance_variable_get(:@hash)
|
|
|
|
when set.is_a?(Set)
|
|
|
|
size >= set.size && set.all? { |o| include?(o) }
|
|
|
|
else
|
|
|
|
raise ArgumentError, "value must be a set"
|
|
|
|
end
|
2002-11-09 13:52:04 -05:00
|
|
|
end
|
2012-08-30 00:01:58 -04:00
|
|
|
alias >= superset?
|
2002-11-09 13:52:04 -05:00
|
|
|
|
2003-01-21 10:15:26 -05:00
|
|
|
# Returns true if the set is a proper superset of the given set.
|
2002-11-09 13:52:04 -05:00
|
|
|
def proper_superset?(set)
|
2015-11-16 01:43:43 -05:00
|
|
|
case
|
|
|
|
when set.instance_of?(self.class)
|
|
|
|
@hash > set.instance_variable_get(:@hash)
|
|
|
|
when set.is_a?(Set)
|
|
|
|
size > set.size && set.all? { |o| include?(o) }
|
|
|
|
else
|
|
|
|
raise ArgumentError, "value must be a set"
|
|
|
|
end
|
2002-11-09 13:52:04 -05:00
|
|
|
end
|
2012-08-30 00:01:58 -04:00
|
|
|
alias > proper_superset?
|
2002-11-09 13:52:04 -05:00
|
|
|
|
2003-01-21 10:15:26 -05:00
|
|
|
# Returns true if the set is a subset of the given set.
|
2002-11-09 13:52:04 -05:00
|
|
|
def subset?(set)
|
2015-11-16 01:43:43 -05:00
|
|
|
case
|
|
|
|
when set.instance_of?(self.class)
|
|
|
|
@hash <= set.instance_variable_get(:@hash)
|
|
|
|
when set.is_a?(Set)
|
|
|
|
size <= set.size && all? { |o| set.include?(o) }
|
|
|
|
else
|
|
|
|
raise ArgumentError, "value must be a set"
|
|
|
|
end
|
2002-11-09 13:52:04 -05:00
|
|
|
end
|
2012-08-30 00:01:58 -04:00
|
|
|
alias <= subset?
|
2002-11-09 13:52:04 -05:00
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Returns true if the set is a proper subset of the given set.
|
2002-11-09 13:52:04 -05:00
|
|
|
def proper_subset?(set)
|
2015-11-16 01:43:43 -05:00
|
|
|
case
|
|
|
|
when set.instance_of?(self.class)
|
|
|
|
@hash < set.instance_variable_get(:@hash)
|
|
|
|
when set.is_a?(Set)
|
|
|
|
size < set.size && all? { |o| set.include?(o) }
|
|
|
|
else
|
|
|
|
raise ArgumentError, "value must be a set"
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
2012-08-30 00:01:58 -04:00
|
|
|
alias < proper_subset?
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2013-07-30 05:58:13 -04:00
|
|
|
# Returns true if the set and the given set have at least one
|
|
|
|
# element in common.
|
2014-01-28 01:19:19 -05:00
|
|
|
#
|
|
|
|
# e.g.:
|
|
|
|
#
|
|
|
|
# require 'set'
|
|
|
|
# Set[1, 2, 3].intersect? Set[4, 5] # => false
|
|
|
|
# Set[1, 2, 3].intersect? Set[3, 4] # => true
|
2013-07-30 05:58:13 -04:00
|
|
|
def intersect?(set)
|
|
|
|
set.is_a?(Set) or raise ArgumentError, "value must be a set"
|
|
|
|
if size < set.size
|
|
|
|
any? { |o| set.include?(o) }
|
|
|
|
else
|
|
|
|
set.any? { |o| include?(o) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns true if the set and the given set have no element in
|
|
|
|
# common. This method is the opposite of +intersect?+.
|
2014-01-28 01:19:19 -05:00
|
|
|
#
|
|
|
|
# e.g.:
|
|
|
|
#
|
|
|
|
# require 'set'
|
|
|
|
# Set[1, 2, 3].disjoint? Set[3, 4] # => false
|
|
|
|
# Set[1, 2, 3].disjoint? Set[4, 5] # => true
|
|
|
|
|
2013-07-30 05:58:13 -04:00
|
|
|
def disjoint?(set)
|
|
|
|
!intersect?(set)
|
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Calls the given block once for each element in the set, passing
|
2008-04-22 22:58:46 -04:00
|
|
|
# the element as parameter. Returns an enumerator if no block is
|
|
|
|
# given.
|
2012-08-31 04:43:09 -04:00
|
|
|
def each(&block)
|
2015-06-15 01:37:38 -04:00
|
|
|
block or return enum_for(__method__) { size }
|
2012-08-31 04:43:09 -04:00
|
|
|
@hash.each_key(&block)
|
2003-07-27 14:10:54 -04:00
|
|
|
self
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2003-09-19 02:53:02 -04:00
|
|
|
# Adds the given object to the set and returns self. Use +merge+ to
|
2007-03-19 22:09:10 -04:00
|
|
|
# add many elements at once.
|
2002-08-30 09:47:49 -04:00
|
|
|
def add(o)
|
2005-06-25 02:22:05 -04:00
|
|
|
@hash[o] = true
|
2002-08-30 09:47:49 -04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
alias << add
|
|
|
|
|
2003-09-18 21:51:17 -04:00
|
|
|
# Adds the given object to the set and returns self. If the
|
2002-12-24 00:29:04 -05:00
|
|
|
# object is already in the set, returns nil.
|
2002-09-20 06:46:52 -04:00
|
|
|
def add?(o)
|
2015-11-16 02:29:37 -05:00
|
|
|
add(o) unless include?(o)
|
2002-09-20 06:46:52 -04:00
|
|
|
end
|
|
|
|
|
2003-09-19 03:47:46 -04:00
|
|
|
# Deletes the given object from the set and returns self. Use +subtract+ to
|
2007-03-19 22:09:10 -04:00
|
|
|
# delete many items at once.
|
2002-08-30 09:47:49 -04:00
|
|
|
def delete(o)
|
2002-09-20 06:46:52 -04:00
|
|
|
@hash.delete(o)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Deletes the given object from the set and returns self. If the
|
|
|
|
# object is not in the set, returns nil.
|
2002-09-20 06:46:52 -04:00
|
|
|
def delete?(o)
|
2015-11-16 02:29:37 -05:00
|
|
|
delete(o) if include?(o)
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Deletes every element of the set for which block evaluates to
|
|
|
|
# true, and returns self.
|
2002-08-30 09:47:49 -04:00
|
|
|
def delete_if
|
2008-06-03 00:42:32 -04:00
|
|
|
block_given? or return enum_for(__method__)
|
2013-05-19 04:33:27 -04:00
|
|
|
# @hash.delete_if should be faster, but using it breaks the order
|
|
|
|
# of enumeration in subclasses.
|
2013-05-20 09:28:32 -04:00
|
|
|
select { |o| yield o }.each { |o| @hash.delete(o) }
|
2002-08-30 09:47:49 -04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2010-05-30 09:19:09 -04:00
|
|
|
# Deletes every element of the set for which block evaluates to
|
|
|
|
# false, and returns self.
|
|
|
|
def keep_if
|
|
|
|
block_given? or return enum_for(__method__)
|
2013-05-19 04:33:27 -04:00
|
|
|
# @hash.keep_if should be faster, but using it breaks the order of
|
|
|
|
# enumeration in subclasses.
|
2013-05-20 09:28:32 -04:00
|
|
|
reject { |o| yield o }.each { |o| @hash.delete(o) }
|
2010-05-30 09:19:09 -04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2008-06-03 02:01:29 -04:00
|
|
|
# Replaces the elements with ones returned by collect().
|
2008-06-03 00:42:32 -04:00
|
|
|
def collect!
|
|
|
|
block_given? or return enum_for(__method__)
|
2015-11-16 02:29:37 -05:00
|
|
|
replace(self.class.new(self) { |o| yield(o) })
|
2002-09-20 06:46:52 -04:00
|
|
|
end
|
|
|
|
alias map! collect!
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Equivalent to Set#delete_if, but returns nil if no changes were
|
|
|
|
# made.
|
2012-08-31 04:43:09 -04:00
|
|
|
def reject!(&block)
|
|
|
|
block or return enum_for(__method__)
|
2002-09-20 06:46:52 -04:00
|
|
|
n = size
|
2012-08-31 04:43:09 -04:00
|
|
|
delete_if(&block)
|
2015-11-16 02:29:37 -05:00
|
|
|
self if size != n
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2010-05-30 09:19:09 -04:00
|
|
|
# Equivalent to Set#keep_if, but returns nil if no changes were
|
|
|
|
# made.
|
2012-08-31 04:43:09 -04:00
|
|
|
def select!(&block)
|
|
|
|
block or return enum_for(__method__)
|
2010-05-30 09:19:09 -04:00
|
|
|
n = size
|
2012-08-31 04:43:09 -04:00
|
|
|
keep_if(&block)
|
2015-11-16 02:29:37 -05:00
|
|
|
self if size != n
|
2010-05-30 09:19:09 -04:00
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Merges the elements of the given enumerable object to the set and
|
|
|
|
# returns self.
|
2002-08-30 09:47:49 -04:00
|
|
|
def merge(enum)
|
2009-05-01 03:52:09 -04:00
|
|
|
if enum.instance_of?(self.class)
|
|
|
|
@hash.update(enum.instance_variable_get(:@hash))
|
2002-09-20 06:46:52 -04:00
|
|
|
else
|
2010-02-11 12:38:05 -05:00
|
|
|
do_with_enum(enum) { |o| add(o) }
|
2002-09-20 06:46:52 -04:00
|
|
|
end
|
|
|
|
|
2002-08-30 09:47:49 -04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Deletes every element that appears in the given enumerable object
|
|
|
|
# and returns self.
|
2002-08-30 09:47:49 -04:00
|
|
|
def subtract(enum)
|
2010-02-11 12:38:05 -05:00
|
|
|
do_with_enum(enum) { |o| delete(o) }
|
2002-08-30 09:47:49 -04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
2002-12-24 00:29:04 -05:00
|
|
|
# Returns a new set built by merging the set and the elements of the
|
|
|
|
# given enumerable object.
|
2002-11-09 13:52:04 -05:00
|
|
|
def |(enum)
|
2002-09-20 06:46:52 -04:00
|
|
|
dup.merge(enum)
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
2011-05-18 20:07:25 -04:00
|
|
|
alias + | ##
|
|
|
|
alias union | ##
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
# Returns a new set built by duplicating the set, removing every
|
|
|
|
# element that appears in the given enumerable object.
|
|
|
|
def -(enum)
|
|
|
|
dup.subtract(enum)
|
|
|
|
end
|
|
|
|
alias difference - ##
|
2011-05-18 17:19:18 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
# Returns a new set containing elements common to the set and the
|
|
|
|
# given enumerable object.
|
|
|
|
def &(enum)
|
|
|
|
n = self.class.new
|
|
|
|
do_with_enum(enum) { |o| n.add(o) if include?(o) }
|
|
|
|
n
|
|
|
|
end
|
|
|
|
alias intersection & ##
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
# Returns a new set containing elements exclusive between the set
|
|
|
|
# and the given enumerable object. (set ^ enum) is equivalent to
|
|
|
|
# ((set | enum) - (set & enum)).
|
|
|
|
def ^(enum)
|
|
|
|
n = Set.new(enum)
|
2015-11-16 02:29:37 -05:00
|
|
|
each { |o| n.add(o) unless n.delete?(o) }
|
2011-05-18 20:07:25 -04:00
|
|
|
n
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns true if two sets are equal. The equality of each couple
|
|
|
|
# of elements is defined according to Object#eql?.
|
|
|
|
def ==(other)
|
|
|
|
if self.equal?(other)
|
|
|
|
true
|
|
|
|
elsif other.instance_of?(self.class)
|
|
|
|
@hash == other.instance_variable_get(:@hash)
|
|
|
|
elsif other.is_a?(Set) && self.size == other.size
|
|
|
|
other.all? { |o| @hash.include?(o) }
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def hash # :nodoc:
|
|
|
|
@hash.hash
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def eql?(o) # :nodoc:
|
|
|
|
return false unless o.is_a?(Set)
|
2012-09-01 05:51:48 -04:00
|
|
|
@hash.eql?(o.instance_variable_get(:@hash))
|
2011-05-18 20:07:25 -04:00
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
# Classifies the set by the return value of the given block and
|
|
|
|
# returns a hash of {value => set of elements} pairs. The block is
|
|
|
|
# called once for each element of the set, passing the element as
|
|
|
|
# parameter.
|
|
|
|
#
|
|
|
|
# e.g.:
|
|
|
|
#
|
|
|
|
# require 'set'
|
|
|
|
# files = Set.new(Dir.glob("*.rb"))
|
|
|
|
# hash = files.classify { |f| File.mtime(f).year }
|
|
|
|
# p hash # => {2000=>#<Set: {"a.rb", "b.rb"}>,
|
|
|
|
# # 2001=>#<Set: {"c.rb", "d.rb", "e.rb"}>,
|
|
|
|
# # 2002=>#<Set: {"f.rb"}>}
|
|
|
|
def classify # :yields: o
|
|
|
|
block_given? or return enum_for(__method__)
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
h = {}
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
each { |i|
|
2015-11-16 02:29:37 -05:00
|
|
|
(h[yield(i)] ||= self.class.new).add(i)
|
2011-05-18 17:19:18 -04:00
|
|
|
}
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
h
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
# Divides the set into a set of subsets according to the commonality
|
|
|
|
# defined by the given block.
|
|
|
|
#
|
|
|
|
# If the arity of the block is 2, elements o1 and o2 are in common
|
|
|
|
# if block.call(o1, o2) is true. Otherwise, elements o1 and o2 are
|
|
|
|
# in common if block.call(o1) == block.call(o2).
|
|
|
|
#
|
|
|
|
# e.g.:
|
|
|
|
#
|
|
|
|
# require 'set'
|
|
|
|
# numbers = Set[1, 3, 4, 6, 9, 10, 11]
|
|
|
|
# set = numbers.divide { |i,j| (i - j).abs == 1 }
|
|
|
|
# p set # => #<Set: {#<Set: {1}>,
|
|
|
|
# # #<Set: {11, 9, 10}>,
|
|
|
|
# # #<Set: {3, 4}>,
|
|
|
|
# # #<Set: {6}>}>
|
|
|
|
def divide(&func)
|
|
|
|
func or return enum_for(__method__)
|
|
|
|
|
|
|
|
if func.arity == 2
|
|
|
|
require 'tsort'
|
|
|
|
|
|
|
|
class << dig = {} # :nodoc:
|
|
|
|
include TSort
|
|
|
|
|
|
|
|
alias tsort_each_node each_key
|
|
|
|
def tsort_each_child(node, &block)
|
|
|
|
fetch(node).each(&block)
|
|
|
|
end
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
each { |u|
|
|
|
|
dig[u] = a = []
|
|
|
|
each{ |v| func.call(u, v) and a << v }
|
|
|
|
}
|
2002-08-30 09:47:49 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
set = Set.new()
|
|
|
|
dig.each_strongly_connected_component { |css|
|
|
|
|
set.add(self.class.new(css))
|
|
|
|
}
|
|
|
|
set
|
|
|
|
else
|
|
|
|
Set.new(classify(&func).values)
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
InspectKey = :__inspect_key__ # :nodoc:
|
|
|
|
|
|
|
|
# Returns a string containing a human-readable representation of the
|
|
|
|
# set. ("#<Set: {element1, element2, ...}>")
|
|
|
|
def inspect
|
|
|
|
ids = (Thread.current[InspectKey] ||= [])
|
|
|
|
|
|
|
|
if ids.include?(object_id)
|
|
|
|
return sprintf('#<%s: {...}>', self.class.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
|
|
|
ids << object_id
|
|
|
|
return sprintf('#<%s: {%s}>', self.class, to_a.inspect[1..-2])
|
|
|
|
ensure
|
|
|
|
ids.pop
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def pretty_print(pp) # :nodoc:
|
|
|
|
pp.text sprintf('#<%s: {', self.class.name)
|
|
|
|
pp.nest(1) {
|
|
|
|
pp.seplist(self) { |o|
|
|
|
|
pp.pp o
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pp.text "}>"
|
|
|
|
end
|
2011-05-18 17:19:18 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def pretty_print_cycle(pp) # :nodoc:
|
|
|
|
pp.text sprintf('#<%s: {%s}>', self.class.name, empty? ? '' : '...')
|
|
|
|
end
|
2002-08-30 09:47:49 -04:00
|
|
|
end
|
|
|
|
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2014-02-04 19:33:38 -05:00
|
|
|
# SortedSet implements a Set that guarantees that its elements are
|
2009-05-01 03:46:23 -04:00
|
|
|
# yielded in sorted order (according to the return values of their
|
|
|
|
# #<=> methods) when iterating over them.
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2009-05-07 13:32:48 -04:00
|
|
|
# All elements that are added to a SortedSet must respond to the <=>
|
|
|
|
# method for comparison.
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2009-05-01 03:46:23 -04:00
|
|
|
# Also, all elements must be <em>mutually comparable</em>: <tt>el1 <=>
|
|
|
|
# el2</tt> must not return <tt>nil</tt> for any elements <tt>el1</tt>
|
|
|
|
# and <tt>el2</tt>, else an ArgumentError will be raised when
|
|
|
|
# iterating over the SortedSet.
|
|
|
|
#
|
|
|
|
# == Example
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2009-05-01 03:46:23 -04:00
|
|
|
# require "set"
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2009-05-02 09:54:09 -04:00
|
|
|
# set = SortedSet.new([2, 1, 5, 6, 4, 5, 3, 3, 3])
|
2009-05-01 03:46:23 -04:00
|
|
|
# ary = []
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2009-05-01 03:46:23 -04:00
|
|
|
# set.each do |obj|
|
|
|
|
# ary << obj
|
|
|
|
# end
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2009-05-01 03:46:23 -04:00
|
|
|
# p ary # => [1, 2, 3, 4, 5, 6]
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2009-05-02 09:54:09 -04:00
|
|
|
# set2 = SortedSet.new([1, 2, "3"])
|
2009-05-01 03:46:23 -04:00
|
|
|
# set2.each { |obj| } # => raises ArgumentError: comparison of Fixnum with String failed
|
2011-05-15 07:55:52 -04:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
class SortedSet < Set
|
|
|
|
@@setup = false
|
|
|
|
|
|
|
|
class << self
|
2011-05-18 20:07:25 -04:00
|
|
|
def [](*ary) # :nodoc:
|
2002-09-20 06:46:52 -04:00
|
|
|
new(ary)
|
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def setup # :nodoc:
|
2002-09-20 06:46:52 -04:00
|
|
|
@@setup and return
|
|
|
|
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 01:47:45 -05:00
|
|
|
module_eval {
|
|
|
|
# a hack to shut up warning
|
|
|
|
alias old_init initialize
|
|
|
|
}
|
2002-09-20 06:46:52 -04:00
|
|
|
begin
|
2011-05-18 17:19:18 -04:00
|
|
|
require 'rbtree'
|
|
|
|
|
2013-11-22 18:50:06 -05:00
|
|
|
module_eval <<-END, __FILE__, __LINE__+1
|
* ext/pathname/lib/pathname.rb, ext/tk/lib/multi-tk.rb,
ext/tk/sample/demos-en/widget, lib/benchmark.rb, lib/irb/cmd/fork.rb,
lib/mkmf.rb, lib/net/ftp.rb, lib/net/smtp.rb, lib/open3.rb,
lib/pstore.rb, lib/rexml/element.rb, lib/rexml/light/node.rb,
lib/rinda/tuplespace.rb, lib/rss/maker/base.rb,
lib/rss/maker/entry.rb, lib/scanf.rb, lib/set.rb, lib/shell.rb,
lib/shell/command-processor.rb, lib/shell/process-controller.rb,
lib/shell/system-command.rb, lib/uri/common.rb: remove unused block
arguments to avoid creating Proc objects.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-11-05 03:37:47 -04:00
|
|
|
def initialize(*args)
|
2011-05-18 20:07:25 -04:00
|
|
|
@hash = RBTree.new
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def add(o)
|
|
|
|
o.respond_to?(:<=>) or raise ArgumentError, "value must respond to <=>"
|
|
|
|
super
|
|
|
|
end
|
|
|
|
alias << add
|
2013-11-22 18:50:06 -05:00
|
|
|
END
|
2002-09-20 06:46:52 -04:00
|
|
|
rescue LoadError
|
2013-11-22 18:50:06 -05:00
|
|
|
module_eval <<-END, __FILE__, __LINE__+1
|
* ext/pathname/lib/pathname.rb, ext/tk/lib/multi-tk.rb,
ext/tk/sample/demos-en/widget, lib/benchmark.rb, lib/irb/cmd/fork.rb,
lib/mkmf.rb, lib/net/ftp.rb, lib/net/smtp.rb, lib/open3.rb,
lib/pstore.rb, lib/rexml/element.rb, lib/rexml/light/node.rb,
lib/rinda/tuplespace.rb, lib/rss/maker/base.rb,
lib/rss/maker/entry.rb, lib/scanf.rb, lib/set.rb, lib/shell.rb,
lib/shell/command-processor.rb, lib/shell/process-controller.rb,
lib/shell/system-command.rb, lib/uri/common.rb: remove unused block
arguments to avoid creating Proc objects.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-11-05 03:37:47 -04:00
|
|
|
def initialize(*args)
|
2011-05-18 20:07:25 -04:00
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def replace(enum)
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def add(o)
|
|
|
|
o.respond_to?(:<=>) or raise ArgumentError, "value must respond to <=>"
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
alias << add
|
|
|
|
|
|
|
|
def delete(o)
|
|
|
|
@keys = nil
|
|
|
|
@hash.delete(o)
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_if
|
2008-06-03 00:42:32 -04:00
|
|
|
block_given? or return enum_for(__method__)
|
2011-05-18 20:07:25 -04:00
|
|
|
n = @hash.size
|
|
|
|
super
|
|
|
|
@keys = nil if @hash.size != n
|
|
|
|
self
|
|
|
|
end
|
2011-05-18 17:19:18 -04:00
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def keep_if
|
|
|
|
block_given? or return enum_for(__method__)
|
|
|
|
n = @hash.size
|
|
|
|
super
|
|
|
|
@keys = nil if @hash.size != n
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def merge(enum)
|
|
|
|
@keys = nil
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2012-08-31 04:43:09 -04:00
|
|
|
def each(&block)
|
2015-06-15 01:37:38 -04:00
|
|
|
block or return enum_for(__method__) { size }
|
2012-08-31 04:43:09 -04:00
|
|
|
to_a.each(&block)
|
2011-05-18 20:07:25 -04:00
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_a
|
|
|
|
(@keys = @hash.keys).sort! unless @keys
|
|
|
|
@keys
|
|
|
|
end
|
2013-11-22 18:50:06 -05:00
|
|
|
END
|
2002-09-20 06:46:52 -04:00
|
|
|
end
|
2011-11-19 21:02:14 -05:00
|
|
|
module_eval {
|
|
|
|
# a hack to shut up warning
|
|
|
|
remove_method :old_init
|
|
|
|
}
|
2002-09-20 06:46:52 -04:00
|
|
|
|
|
|
|
@@setup = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-18 20:07:25 -04:00
|
|
|
def initialize(*args, &block) # :nodoc:
|
2002-09-20 06:46:52 -04:00
|
|
|
SortedSet.setup
|
|
|
|
initialize(*args, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module Enumerable
|
2002-12-24 00:29:04 -05:00
|
|
|
# Makes a set from the enumerable object with given arguments.
|
2005-06-30 02:20:09 -04:00
|
|
|
# Needs to +require "set"+ to use this method.
|
2002-09-20 06:46:52 -04:00
|
|
|
def to_set(klass = Set, *args, &block)
|
|
|
|
klass.new(self, *args, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# =begin
|
|
|
|
# == RestricedSet class
|
|
|
|
# RestricedSet implements a set with restrictions defined by a given
|
|
|
|
# block.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# === Super class
|
|
|
|
# Set
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# === Class Methods
|
|
|
|
# --- RestricedSet::new(enum = nil) { |o| ... }
|
|
|
|
# --- RestricedSet::new(enum = nil) { |rset, o| ... }
|
|
|
|
# Creates a new restricted set containing the elements of the given
|
|
|
|
# enumerable object. Restrictions are defined by the given block.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# If the block's arity is 2, it is called with the RestrictedSet
|
|
|
|
# itself and an object to see if the object is allowed to be put in
|
|
|
|
# the set.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# Otherwise, the block is called with an object to see if the object
|
|
|
|
# is allowed to be put in the set.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# === Instance Methods
|
|
|
|
# --- restriction_proc
|
|
|
|
# Returns the restriction procedure of the set.
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# =end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# class RestricedSet < Set
|
|
|
|
# def initialize(*args, &block)
|
|
|
|
# @proc = block or raise ArgumentError, "missing a block"
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# if @proc.arity == 2
|
|
|
|
# instance_eval %{
|
2011-05-18 20:07:25 -04:00
|
|
|
# def add(o)
|
|
|
|
# @hash[o] = true if @proc.call(self, o)
|
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# alias << add
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2011-05-18 20:07:25 -04:00
|
|
|
# def add?(o)
|
|
|
|
# if include?(o) || !@proc.call(self, o)
|
|
|
|
# nil
|
|
|
|
# else
|
|
|
|
# @hash[o] = true
|
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2011-05-18 20:07:25 -04:00
|
|
|
# def replace(enum)
|
|
|
|
# enum.respond_to?(:each) or raise ArgumentError, "value must be enumerable"
|
|
|
|
# clear
|
|
|
|
# enum.each_entry { |o| add(o) }
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2011-05-18 20:07:25 -04:00
|
|
|
# self
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2011-05-18 20:07:25 -04:00
|
|
|
# def merge(enum)
|
|
|
|
# enum.respond_to?(:each) or raise ArgumentError, "value must be enumerable"
|
|
|
|
# enum.each_entry { |o| add(o) }
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2011-05-18 20:07:25 -04:00
|
|
|
# self
|
|
|
|
# end
|
2002-09-20 06:46:52 -04:00
|
|
|
# }
|
|
|
|
# else
|
|
|
|
# instance_eval %{
|
2011-05-18 20:07:25 -04:00
|
|
|
# def add(o)
|
2005-06-25 02:22:05 -04:00
|
|
|
# if @proc.call(o)
|
2011-05-18 20:07:25 -04:00
|
|
|
# @hash[o] = true
|
2005-06-25 02:22:05 -04:00
|
|
|
# end
|
2011-05-18 20:07:25 -04:00
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# alias << add
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2011-05-18 20:07:25 -04:00
|
|
|
# def add?(o)
|
|
|
|
# if include?(o) || !@proc.call(o)
|
|
|
|
# nil
|
|
|
|
# else
|
|
|
|
# @hash[o] = true
|
|
|
|
# self
|
|
|
|
# end
|
|
|
|
# end
|
2002-09-20 06:46:52 -04:00
|
|
|
# }
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# super(*args)
|
|
|
|
# end
|
2009-03-05 22:56:38 -05:00
|
|
|
#
|
2002-09-20 06:46:52 -04:00
|
|
|
# def restriction_proc
|
|
|
|
# @proc
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
|
2012-11-24 13:51:45 -05:00
|
|
|
# Tests have been moved to test/test_set.rb.
|