From: Shlomi Fish Date: Wed, 19 May 2010 17:11:03 +0000 (+0300) Subject: Add the Perl equivalent for av_len. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a8676f70bbd19ba630d2e76288f31b4a2d7a63f1;p=p5sagit%2Fp5-mst-13.2.git Add the Perl equivalent for av_len. Signed-off-by: David Golden --- diff --git a/av.c b/av.c index 6e08454..de57aac 100644 --- a/av.c +++ b/av.c @@ -721,6 +721,8 @@ Perl_av_shift(pTHX_ register AV *av) Returns the highest index in the array. The number of elements in the array is C. Returns -1 if the array is empty. +The Perl equivalent for this is C<$#myarray>. + =cut */