summaryrefslogtreecommitdiffstats
path: root/doc/DictObj.3
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-10-04 13:06:33 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-10-04 13:06:33 (GMT)
commitb33be65e4a3a29aae1ef59d24db32aff7dcb84ab (patch)
tree871526a9cafd72bc2905ad69a6a163b87a33c24f /doc/DictObj.3
parent7a336496efb78e738b2f7695aac8a1bf7e6665be (diff)
downloadtcl-b33be65e4a3a29aae1ef59d24db32aff7dcb84ab.zip
tcl-b33be65e4a3a29aae1ef59d24db32aff7dcb84ab.tar.gz
tcl-b33be65e4a3a29aae1ef59d24db32aff7dcb84ab.tar.bz2
Clarify that dicts are unordered [Bug 1032243] and add another example.
Diffstat (limited to 'doc/DictObj.3')
-rw-r--r--doc/DictObj.35
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/DictObj.3 b/doc/DictObj.3
index 01e20cf..f56d833 100644
--- a/doc/DictObj.3
+++ b/doc/DictObj.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: DictObj.3,v 1.5 2004/10/02 17:00:38 dkf Exp $
+'\" RCS: @(#) $Id: DictObj.3,v 1.6 2004/10/04 13:06:34 dkf Exp $
'\"
.so man.macros
.TH Tcl_DictObj 3 8.5 Tcl "Tcl Library Procedures"
@@ -99,7 +99,8 @@ sub-dictionaries of the main dictionary object passed to them.
.PP
Tcl dictionary objects have an internal representation that supports
efficient mapping from keys to values and which does not guarantee any
-particular ordering of keys within the dictionary.
+particular ordering of keys within the dictionary (the underlying
+basic data-structure is a hash table created with \fBTcl_InitObjHashTable\fR).
The procedures described in this man page are used to
create, modify, index, and iterate over dictionary objects from C code.
.PP