This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add the perl equivalent for av_make.
authorShlomi Fish <shlomif@iglu.org.il>
Mon, 24 May 2010 20:40:48 +0000 (23:40 +0300)
committerDavid Golden <dagolden@cpan.org>
Tue, 25 May 2010 16:15:01 +0000 (12:15 -0400)
Signed-off-by: David Golden <dagolden@cpan.org>
av.c

diff --git a/av.c b/av.c
index de57aac..219870c 100644 (file)
--- a/av.c
+++ b/av.c
@@ -379,6 +379,8 @@ Creates a new AV and populates it with a list of SVs.  The SVs are copied
 into the array, so they may be freed after the call to av_make.  The new AV
 will have a reference count of 1.
 
+Perl equivalent: C<my @new_array = ($scalar1, $scalar2, $scalar3...);>
+
 =cut
 */