[DOC] Add Array#{append,prepend}
to call-seq [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ef9bc609db
commit
646db52f3a
2
array.c
2
array.c
@ -947,6 +947,7 @@ rb_ary_cat(VALUE ary, const VALUE *argv, long len)
|
||||
/*
|
||||
* call-seq:
|
||||
* ary.push(obj, ... ) -> ary
|
||||
* ary.append(obj, ... ) -> ary
|
||||
*
|
||||
* Append --- Pushes the given object(s) on to the end of this array. This
|
||||
* expression returns the array itself, so several appends
|
||||
@ -1169,6 +1170,7 @@ ary_ensure_room_for_unshift(VALUE ary, int argc)
|
||||
/*
|
||||
* call-seq:
|
||||
* ary.unshift(obj, ...) -> ary
|
||||
* ary.prepend(obj, ...) -> ary
|
||||
*
|
||||
* Prepends objects to the front of +self+, moving other elements upwards.
|
||||
* See also Array#shift for the opposite effect.
|
||||
|
Loading…
x
Reference in New Issue
Block a user