From b7ff7ff211d0d5fc593efe5c9d305d197ecb8d86 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Tue, 18 May 2010 15:31:41 +0300 Subject: [PATCH] Add Perl equivalent for av_exists(). This mentions that it's equivalent to exists($myarray[$key]). Signed-off-by: David Golden --- av.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/av.c b/av.c index f915fefb..33d5d7b 100644 --- a/av.c +++ b/av.c @@ -885,6 +885,8 @@ Returns true if the element indexed by C has been initialized. This relies on the fact that uninitialized array elements are set to C<&PL_sv_undef>. +Perl equivalent: C. + =cut */ bool -- 1.8.3.1