projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
a8676f7
)
Add the perl equivalent for av_make.
Shlomi Fish [Mon, 24 May 2010 20:40:48 +0000 (23:40 +0300)]
Signed-off-by: David Golden <dagolden@cpan.org>
av.c
patch
|
blob
|
blame
|
history
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
*/