Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ci skip] Minor documentation fix. | Cristian Greco | 2020-10-12 | 1 | -1/+1 |
| | | | Add missing period. | ||||
* | Add call-seq of [Feature #16274] | Kazuhiro NISHIYAMA | 2020-09-29 | 1 | -0/+1 |
| | |||||
* | Fix `ENV.except`'s docs | bogdanvlviv | 2020-09-26 | 1 | -2/+2 |
| | |||||
* | Make hash returned by Hash#transform_values not have a default | Jeremy Evans | 2020-09-21 | 1 | -0/+1 |
| | | | | | | | This sets an explicit default of nil. There is probably a better approach of removing the default. Fixes [Bug #17181] | ||||
* | Comply with guide for method doc: hash.c (#3466) | Burdette Lamar | 2020-08-27 | 1 | -22/+3 |
| | | | | | | | | | | Instance methods considered (most unchanged): - any - dig - \<= - \< - \>= - \> - to_proc | ||||
* | Comply with guide for method doc: hash.c (#3465) | Burdette Lamar | 2020-08-27 | 1 | -32/+2 |
| | | | | | | | | | | | | | | | Instance methods considered (maybe not all changed): invert merge! merge assoc rassoc flatten compact compact! compare_by_identity compare_by_identity? | ||||
* | Comply with guide for method doc: hash.c (#3464) | Burdette Lamar | 2020-08-27 | 1 | -72/+8 |
| | | | | | | | | | | | | | | | | Instance methods considered (maybe not all changed): to_a inspect to_hash to_h keys values include? has_value? == eql? hash | ||||
* | Comply with guide for method doc: hash.c (#3459) | Burdette Lamar | 2020-08-27 | 1 | -53/+11 |
| | | | | | | | | | | | | | | | | | Instance methods considered (some maybe not changed): clear []= replace length empty? each_value each_key each_pair transform_keys transform_keys! transform_values transform_values! | ||||
* | Comply with guide for method doc: hash.c (#3454) | Burdette Lamar | 2020-08-25 | 1 | -71/+19 |
| | | | | | | | | | | | | | | | | | | Methods reviewed (a few not modified): key delete shift delete_if reject! reject slice except values_at fetch_values select select! keep_if | ||||
* | Comply with guide for method doc: hash.c (#3451) | Burdette Lamar | 2020-08-25 | 1 | -135/+48 |
| | | | | | | | | | | | | | | | | Methods: ::new ::[] ::try_convert #rehash #[] #fetch #default #default= #default_proc #default_proc= | ||||
* | Remove checks for self returned in array.c and hash.c examples (#3446) | Burdette Lamar | 2020-08-23 | 1 | -97/+32 |
| | | | Further compliance with https://github.com/ruby/ruby/blob/master/doc/method_documentation.rdoc#details-and-examples- | ||||
* | Remove nil-return examples from hash.c (#3438) | Burdette Lamar | 2020-08-21 | 1 | -54/+24 |
| | | | | * Remove nil-return examples from hash.c | ||||
* | Partial compliance with doc/method_documentation.rdoc in hash.c (#3432) | Burdette Lamar | 2020-08-20 | 1 | -71/+7 |
| | | | Removes references to *-convertible thingies. | ||||
* | [DOC] Improve Hash's doc for missing keys | Marc-Andre Lafortune | 2020-08-19 | 1 | -106/+75 |
| | |||||
* | [DOC] Improve and simplify key egality documentation for Hash | Marc-Andre Lafortune | 2020-08-19 | 1 | -115/+28 |
| | |||||
* | RHASH_TBL: is now ext-only | 卜部昌平 | 2020-08-19 | 1 | -8/+1 |
| | | | | | It seems almost no internal codes use RHASH_TBL any longer. Why not just eliminate it entirely, so that the macro can be purely ext-only. | ||||
* | Fix links to Dig Methods document (#3421) | Burdette Lamar | 2020-08-14 | 1 | -1/+1 |
| | | | | | * Fix links to Dig Methods document * Fix links to Dig Methods document | ||||
* | Adding doc/dig_methods.rdoc and links to it (#3416) | Burdette Lamar | 2020-08-13 | 1 | -42/+8 |
| | | | | | | | Adds a full discussion of #dig, along with links from Array, Hash, Struct, and OpenStruct. CSV::Table and CSV::Row are over in ruby/csv. I'll get to them soon. The art to the thing is to figure out how much (or how little) to say at each #dig. | ||||
* | Fix arity of Hash#to_proc [Bug #12671] | Benoit Daloze | 2020-07-29 | 1 | -1/+1 |
| | |||||
* | rb_hash_transient_heap_evacuate: do not goto into a branch | 卜部昌平 | 2020-06-29 | 1 | -5/+4 |
| | | | | | I'm not necessarily against every goto in general, but jumping into a branch is definitely a bad idea. Better refactor. | ||||
* | any_hash: do not goto into a branch | 卜部昌平 | 2020-06-29 | 1 | -19/+18 |
| | | | | | I'm not necessarily against every goto in general, but jumping into a branch is definitely a bad idea. Better refactor. | ||||
* | Add Hash#except ENV#except [Feature #15822] | Timo Schilling | 2020-06-18 | 1 | -0/+52 |
| | |||||
* | ENV.delete should return the result of block on non-existing key | Nobuyoshi Nakada | 2020-06-10 | 1 | -6/+7 |
| | | | | | | | Fixes [Bug #16173] Co-Authored-By: Burdette Lamar <burdettelamar@yahoo.com> Co-Authored-By: Jeremy Evans <code@jeremyevans.net> | ||||
* | Enhanced Rdoc for Array#fetch and Array#index (#3202) | Burdette Lamar | 2020-06-10 | 1 | -6/+6 |
| | | | | | * Enhanced Rdoc for Array#fetch and Array#index * Couple of tweaks (per review) in Rdoc for Hash | ||||
* | Enhanced Rdoc for Hash (#3187) | Burdette Lamar | 2020-06-07 | 1 | -57/+76 |
| | | | | | | | | | | | Methods: #<= #< #>= #> #to_proc Also, a small amount of housekeeping: Adding backslash to some class name to prevent linking. | ||||
* | Enhanced Rdoc for Hash (#3178) | Burdette Lamar | 2020-06-03 | 1 | -53/+160 |
| | | | | | | | * Enhanced Rdoc for Hash * Fix typo in Hash Rdoc * Enhanced Rdoc for Hash | ||||
* | [ci skip] Enhanced Rdoc for Hash (#3162) | Burdette Lamar | 2020-06-02 | 1 | -135/+254 |
| | | | | | * Enhanced Rdoc for Hash * Enhanced Rdoc for Hash | ||||
* | fix typo in Hash#delete docs | S-H-GAMELINKS | 2020-06-01 | 1 | -1/+1 |
| | |||||
* | [ci skip] Enhanced Rdoc for Hash (#3155) | Burdette Lamar | 2020-05-29 | 1 | -58/+96 |
| | | | | | * Enhanced Rdoc for Hash * Respond to review | ||||
* | Enhanced Rdoc for Hash (#3151) | Burdette Lamar | 2020-05-28 | 1 | -87/+180 |
| | |||||
* | [ci skip] Enhanced Rdoc for Hash (#3143) | Burdette Lamar | 2020-05-27 | 1 | -50/+71 |
| | | | | | | | | * Enhanced Rdoc for Hash * Respond to review * Nudge CI testing. Respond to review | ||||
* | Enhanced Rdoc for Hash (#3139) | Burdette Lamar | 2020-05-23 | 1 | -40/+109 |
| | |||||
* | Enhanced Rdoc for Hash | BurdetteLamar | 2020-05-23 | 1 | -37/+104 |
| | |||||
* | Enhanced rdoc for Hash (#3129) | Burdette Lamar | 2020-05-22 | 1 | -24/+29 |
| | |||||
* | add static modifier for rb_hash_keep_if func | S-H-GAMELINKS | 2020-05-22 | 1 | -1/+1 |
| | |||||
* | add static modifier for rb_hash_select_bang func | S-H-GAMELINKS | 2020-05-22 | 1 | -1/+1 |
| | |||||
* | add static modifier for rb_hash_select func | S-H-GAMELINKS | 2020-05-22 | 1 | -1/+1 |
| | |||||
* | [ci skip] Enhanced rdoc for Hash (#3121) | Burdette Lamar | 2020-05-21 | 1 | -55/+72 |
| | |||||
* | add static modifer for rb_hash_fetch_values func | S-H-GAMELINKS | 2020-05-20 | 1 | -1/+1 |
| | |||||
* | [CI skip] Enhance rdoc intro for Hash (#3056) | Burdette Lamar | 2020-05-15 | 1 | -67/+238 |
| | | | | | | | | | | | | | | | | | | | | | | | * Per @nobu review * [CI skip] Enhance rdoc intro for Hash * Tweak call-seq for Hash.new * Tweak call-seq for Hash.new * Minor corrections * Respond to review * Respond to review * Respond to review * Respond to review * Fix chain exampmle * Response to review | ||||
* | Document that #hash is not called for certain core classes [ci skip] | Jeremy Evans | 2020-05-12 | 1 | -0/+3 |
| | | | | Fixes [Bug #16850] | ||||
* | sed -i 's|ruby/impl|ruby/internal|' | 卜部昌平 | 2020-05-11 | 1 | -1/+1 |
| | | | | To fix build failures. | ||||
* | sed -i s|ruby/3|ruby/impl|g | 卜部昌平 | 2020-05-11 | 1 | -1/+1 |
| | | | | This shall fix compile errors. | ||||
* | Added more NORETURN declarations | Nobuyoshi Nakada | 2020-05-11 | 1 | -1/+2 |
| | |||||
* | RDoc enhancements for Hash[]. | Burdette Lamar | 2020-04-23 | 1 | -12/+64 |
| | |||||
* | Env values removed by ENV.clear are not used | Nobuyoshi Nakada | 2020-04-18 | 1 | -4/+3 |
| | |||||
* | Bypass env key encoding conversion if unnecessary | Nobuyoshi Nakada | 2020-04-18 | 1 | -9/+13 |
| | |||||
* | Hoisted out reset_by_modified_env | Nobuyoshi Nakada | 2020-04-18 | 1 | -10/+12 |
| | |||||
* | Compare environment variable names in those manor [Bug #16798] | Nobuyoshi Nakada | 2020-04-18 | 1 | -3/+19 |
| | |||||
* | Improve Hash documentation. | Burdette Lamar | 2020-04-14 | 1 | -35/+62 |
| |