summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-03-12 16:06:04 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-12 16:06:04 +0000
commita6d3fe4fc3789307da1870e4757f1b395ea67941 (patch)
treee4440804682d9953c83eef28d7e8dba5a77f56d6 /pod
parent2956957731badfc3e16c029c1f22e4098fb8c46a (diff)
downloadperl-a6d3fe4fc3789307da1870e4757f1b395ea67941.tar.gz
perldeltaize Hash::Util.
p4raw-id: //depot/perl@15202
Diffstat (limited to 'pod')
-rw-r--r--pod/perldelta.pod12
1 files changed, 11 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 77056e4456..c07cda8a2d 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<fields> pragma interface will remain
-available.
+available. The I<restricted hashes> interface is expected to
+be the replacement interface (see L<Hash::Util>).
=item *
@@ -627,6 +628,15 @@ Any encoding supported by Encode module is also available to the
=item *
+C<Hash::Util> is the interface to the new I<restricted hashes>
+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<I18N::Langinfo> can be use to query locale information.
See L<I18N::Langinfo>.