diff options
author | Shlomi Fish <shlomif@iglu.org.il> | 2010-05-24 23:40:48 +0300 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2010-05-25 12:15:01 -0400 |
commit | 775f1d61966fb2c5300c9c08fa931980430ed0da (patch) | |
tree | e4fa8bd7bc840da82a2c3980a2f4c093dcba6733 | |
parent | a8676f70bbd19ba630d2e76288f31b4a2d7a63f1 (diff) | |
download | perl-775f1d61966fb2c5300c9c08fa931980430ed0da.tar.gz |
Add the perl equivalent for av_make.
Signed-off-by: David Golden <dagolden@cpan.org>
-rw-r--r-- | av.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 */ |