summaryrefslogtreecommitdiff
path: root/README.EXT
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-08 15:25:04 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-08 15:25:04 +0000
commite78ff08968357431c87914641f294185cfda3218 (patch)
tree280555e2d3940352028047d2493430a34be73f5b /README.EXT
parent729e66b3c1d90547c9b4eb2a045d9095075f71b8 (diff)
* array.c (rb_ary_cat): new function to concat objects into array.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.EXT b/README.EXT
index c57dba0bb7..ad45255bca 100644
--- a/README.EXT
+++ b/README.EXT
@@ -284,6 +284,9 @@ listed below:
rb_ary_shift(VALUE ary)
rb_ary_unshift(VALUE ary, VALUE val)
+ rb_ary_cat(VALUE ary, const VALUE *ptr, long len)
+
+ Appends len elements of objects from ptr to the array.
2. Extending Ruby with C