diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-12-20 21:15:57 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-12-20 21:15:57 +0000 |
commit | 878d132a73f5d089e821fedd49aa4835a2786d1d (patch) | |
tree | 5f489d4e731a9809ef0261bfb731eee600f3911a /pp_proto.h | |
parent | 3bdcbd26ea8ce137a02a61d6364dbbb1afb63c19 (diff) | |
download | perl-878d132a73f5d089e821fedd49aa4835a2786d1d.tar.gz |
Implement each @array.
Documentation needed, FIXME for proper 64 bit support of arrays longer
than 2**32, re-order the new ops at the end if merging to 5.10.x.
p4raw-id: //depot/perl@32680
Diffstat (limited to 'pp_proto.h')
-rw-r--r-- | pp_proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pp_proto.h b/pp_proto.h index 3a96e32837..e40122ee99 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -11,6 +11,7 @@ PERL_CKDEF(Perl_ck_concat) PERL_CKDEF(Perl_ck_defined) PERL_CKDEF(Perl_ck_delete) PERL_CKDEF(Perl_ck_die) +PERL_CKDEF(Perl_ck_each) PERL_CKDEF(Perl_ck_eof) PERL_CKDEF(Perl_ck_eval) PERL_CKDEF(Perl_ck_exec) @@ -175,6 +176,9 @@ PERL_PPDEF(Perl_pp_rv2av) PERL_PPDEF(Perl_pp_aelemfast) PERL_PPDEF(Perl_pp_aelem) PERL_PPDEF(Perl_pp_aslice) +PERL_PPDEF(Perl_pp_aeach) +PERL_PPDEF(Perl_pp_akeys) +PERL_PPDEF(Perl_pp_avalues) PERL_PPDEF(Perl_pp_each) PERL_PPDEF(Perl_pp_values) PERL_PPDEF(Perl_pp_keys) |