summaryrefslogtreecommitdiff
path: root/av.c
diff options
context:
space:
mode:
authorShlomi Fish <shlomif@iglu.org.il>2010-05-24 23:40:48 +0300
committerDavid Golden <dagolden@cpan.org>2010-05-25 12:15:01 -0400
commit775f1d61966fb2c5300c9c08fa931980430ed0da (patch)
treee4fa8bd7bc840da82a2c3980a2f4c093dcba6733 /av.c
parenta8676f70bbd19ba630d2e76288f31b4a2d7a63f1 (diff)
downloadperl-775f1d61966fb2c5300c9c08fa931980430ed0da.tar.gz
Add the perl equivalent for av_make.
Signed-off-by: David Golden <dagolden@cpan.org>
Diffstat (limited to 'av.c')
-rw-r--r--av.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/av.c b/av.c
index de57aac38d..219870c1a9 100644
--- 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
*/