diff options
author | Steffen Mueller <smueller@cpan.org> | 2013-07-20 17:53:08 +0200 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2013-07-20 17:53:08 +0200 |
commit | dbc2ea0c923176b1040e2ba2a21bd680cce3be11 (patch) | |
tree | f94c9a8a5e85d1dc540b3f17a88a34a43afbba4e /av.c | |
parent | be456e362b6aa97144209dad66d321b296b7e2c8 (diff) | |
download | perl-dbc2ea0c923176b1040e2ba2a21bd680cce3be11.tar.gz |
Clarify av_shift API docs
Diffstat (limited to 'av.c')
-rw-r--r-- | av.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -697,9 +697,9 @@ Perl_av_unshift(pTHX_ AV *av, I32 num) /* =for apidoc av_shift -Shifts an SV off the beginning of the -array. Returns C<&PL_sv_undef> if the -array is empty. +Removes one SV from the start of the array, reducing its size by one and +returning the SV (transferring control of one reference count) to the +caller. Returns C<&PL_sv_undef> if the array is empty. Perl equivalent: C<shift(@myarray);> |