diff options
author | BurdetteLamar <[email protected]> | 2024-09-07 16:05:25 -0500 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-09-10 15:30:40 -0400 |
commit | 175a98d5160e9c3773c1273c07255c6ab9b8a396 (patch) | |
tree | f5eadfb6496c0ba827cc7a98f626226f98c72788 /array.c | |
parent | 316c2001e04d76c9f898074c6a87b4e8f2668536 (diff) |
[DOC] Related for Array#collect!
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11567
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3730,6 +3730,9 @@ rb_ary_collect(VALUE ary) * a.map! { |element| element.class } # => [Symbol, String, Integer] * * With no block given, returns a new Enumerator. + * + * Related: #collect; + * see also {Methods for Converting}[rdoc-ref:Array@Methods+for+Converting]. */ static VALUE |