From: Shlomi Fish Date: Sat, 15 May 2010 19:13:59 +0000 (+0300) Subject: Add a Perl equivalent to av_delete(). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=71282cab69578876db765e8d8aadb9cc2331ebf2;p=p5sagit%2Fp5-mst-13.2.git Add a Perl equivalent to av_delete(). Signed-off-by: David Golden --- diff --git a/av.c b/av.c index 095147a..f915fef 100644 --- a/av.c +++ b/av.c @@ -791,7 +791,9 @@ Perl_av_fill(pTHX_ register AV *av, I32 fill) Deletes the element indexed by C from the array. Returns the deleted element. If C equals C, the element is freed -and null is returned. +and null is returned. Perl equivalent: C +for the non-C version and a void-context C +for the C version. =cut */