| Commit message (Expand) | Author | Age | Files | Lines |
* | lib/set.rb: [DOC] remove empty comments | stomar | 2017-11-22 | 1 | -4/+4 |
* | set.rb: improve docs for Set | stomar | 2017-11-22 | 1 | -33/+28 |
* | Add examples to Set documentation [ci skip] | knu | 2017-11-17 | 1 | -7/+47 |
* | lib/set.rb: improve docs for Set#=== | stomar | 2017-10-29 | 1 | -6/+11 |
* | Add `Set#reset` | knu | 2017-10-22 | 1 | -0/+18 |
* | Avoid use of `self.class.new(self)` in Set#collect! | knu | 2017-10-21 | 1 | -1/+3 |
* | Fix comparison methods of Set to check if `@hash` is actually comparable | knu | 2017-10-21 | 1 | -4/+4 |
* | Use a mutex to make SortedSet.setup thread-safe | knu | 2017-10-21 | 1 | -90/+92 |
* | Remove redundant use of module_eval | knu | 2017-10-21 | 1 | -8/+6 |
* | Allow a SortedSet to be frozen and still functional [Bug #12091] | knu | 2017-10-21 | 1 | -0/+5 |
* | Alias Set#=== to #include? | knu | 2017-09-19 | 1 | -0/+17 |
* | Alias Set#to_s to #inspect [ruby-core:81753] [Feature #13676] | knu | 2017-07-14 | 1 | -0/+2 |
* | Add Set#compare_by_identity and Set#compare_by_identity? | knu | 2016-11-05 | 1 | -2/+20 |
* | * lib/set.rb: [DOC] add documentation that Set#{delete_if,keep_if,collect!,re... | ktsj | 2016-05-04 | 1 | -4/+11 |
* | * lib/set.rb (Set#{delete_if,keep_if,collect!,reject!,select!,classify,divide}, | ktsj | 2016-05-04 | 1 | -9/+9 |
* | * lib/set.rb: Enable frozen_string_literal. | knu | 2015-11-16 | 1 | -1/+3 |
* | Explain the reason for calling do_with_enum without a block [ci skip] | knu | 2015-11-16 | 1 | -1/+1 |
* | * lib/set.rb (Hash#flatten!, #add?, #delete?, #collect!, #reject!, | knu | 2015-11-16 | 1 | -23/+8 |
* | * lib/set.rb (#>=, #>, #<=, #<): Make use of Hash#>=, #>, #<, and | knu | 2015-11-16 | 1 | -12/+32 |
* | * lib/set.rb: Make Set#each and SortedSet#each generate a sized | knu | 2015-06-15 | 1 | -2/+2 |
* | * hash.c: Added docs to explain that #include? and #member? do not | hsbt | 2015-02-17 | 1 | -0/+5 |
* | set: speed up Set#include? | normal | 2015-02-11 | 1 | -2/+2 |
* | * lib/set.rb (Set#replace): Check if an object given is enumerable | knu | 2014-08-06 | 1 | -4/+4 |
* | Implement Set#clone. [Fixes GH-661] | knu | 2014-08-06 | 1 | -2/+9 |
* | * lib/set.rb: [DOC] Fix grammatical error by @bouk [fix GH-524] | hsbt | 2014-02-05 | 1 | -1/+1 |
* | * lib/set.rb: [DOC] Add examples for Set#intersect? and Set#disjoint? | zzak | 2014-01-28 | 1 | -0/+13 |
* | * lib/set.rb (class SortedSet): Fix source_location for methods defined via e... | tmm1 | 2013-11-22 | 1 | -4/+4 |
* | * lib/set.rb: [DOC] Add a couple of notes on Hash as storage. | knu | 2013-07-31 | 1 | -3/+10 |
* | * lib/set.rb: [DOC] Fix example result. Hash is now ordered. | knu | 2013-07-31 | 1 | -1/+1 |
* | Use the term "sorted" instead "ordered" when mentioning SortSet. | knu | 2013-07-31 | 1 | -1/+1 |
* | Add Set#intersect? and #disjoint?. | knu | 2013-07-30 | 1 | -0/+17 |
* | Define Set#to_set so that aSet.to_set returns self. | knu | 2013-07-19 | 1 | -0/+10 |
* | * lib/set.rb (Set#freeze, taint, untaint): Save a "self" by | knu | 2013-06-01 | 1 | -6/+3 |
* | * lib/set.rb (Set#delete_if, Set#keep_if): Avoid blockless call of | knu | 2013-05-20 | 1 | -3/+3 |
* | * lib/set.rb (Set#delete_if, Set#keep_if): Add comments. | knu | 2013-05-19 | 1 | -0/+4 |
* | * lib/set.rb (Set#delete_if, Set#keep_if): Make Set#delete_if and | knu | 2013-05-18 | 1 | -2/+2 |
* | Move tests embedded in lib/set.rb to test/test_set.rb. | knu | 2012-11-24 | 1 | -644/+1 |
* | Drop executable bits. | knu | 2012-11-22 | 1 | -0/+0 |
* | * lib/set.rb (#initialize_copy, #eql): Use instance_variable_get | knu | 2012-09-01 | 1 | -2/+2 |
* | * lib/set.rb (Set#{each,reject!,select!}, SortedSet#each): Pass | knu | 2012-08-31 | 1 | -12/+12 |
* | * lib/set.rb (Set#{<,>,<=,>=}): Define comparison operators as | knu | 2012-08-30 | 1 | -0/+23 |
* | * lib/set.rb (SortedSet.setup): remove old_init after initialize | akr | 2011-11-20 | 1 | -0/+4 |
* | * lib/set.rb (SortedSet.setup): don't remove old_init. The remove | akr | 2011-11-20 | 1 | -1/+0 |
* | * ext/pathname/lib/pathname.rb, ext/tk/lib/multi-tk.rb, | ktsj | 2011-11-05 | 1 | -2/+2 |
* | * lib: revert r31635-r31638 and untabify with expand(1). | nobu | 2011-05-19 | 1 | -253/+253 |
* | * lib: Convert tabs to spaces for ruby files per | drbrain | 2011-05-18 | 1 | -279/+279 |
* | * remove trailing spaces. | nobu | 2011-05-15 | 1 | -10/+10 |
* | * lib/set.rb (class Set): Add nodoc to internal-use methods. Patch by Pete... | drbrain | 2011-05-11 | 1 | -2/+2 |
* | * lib/set.rb (Set#replace): Apply a bit of optimization. | knu | 2010-10-10 | 1 | -2/+2 |
* | * lib/set.rb (keep_if, select!): New methods [ruby-core:29749] | marcandre | 2010-05-30 | 1 | -0/+25 |