projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
1a3362a
)
Add the Perl equivalent for av_len.
Shlomi Fish [Wed, 19 May 2010 17:11:03 +0000 (20:11 +0300)]
Signed-off-by: David Golden <dagolden@cpan.org>
av.c
patch
|
blob
|
blame
|
history
diff --git
a/av.c
b/av.c
index
6e08454
..
de57aac
100644
(file)
--- 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<av_len(av) + 1>. Returns -1 if the array is empty.
+The Perl equivalent for this is C<$#myarray>.
+
=cut
*/