From: Jarkko Hietaniemi Date: Tue, 12 Mar 2002 16:06:04 +0000 (+0000) Subject: perldeltaize Hash::Util. X-Git-Tag: perl-5.8.0~2059 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/a6d3fe4fc3789307da1870e4757f1b395ea67941 perldeltaize Hash::Util. p4raw-id: //depot/perl@15202 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 77056e4..c07cda8 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -207,7 +207,8 @@ and will be removed in Perl 5.10.0, and the feature will be implemented differently. Not only is the current interface rather ugly, but the current implementation slows down normal array and hash use quite noticeably. The C pragma interface will remain -available. +available. The I interface is expected to +be the replacement interface (see L). =item * @@ -627,6 +628,15 @@ Any encoding supported by Encode module is also available to the =item * +C is the interface to the new I +feature. A restricted hash is restricted to a certain set of keys, +no keys outside the set can be added. Also individual keys can be +restricted so that the key cannot be deleted and the value cannot be +changed. (Implemented by Jeffrey Friedl, Nick Ing-Simmons, and +Michael Schwern.) + +=item * + C can be use to query locale information. See L.