Dict.st
changeset 5 67342904af11
parent 3 24d81bf47225
child 10 4f1f9a91e406
--- a/Dict.st	Wed Oct 13 01:20:27 1993 +0100
+++ b/Dict.st	Wed Oct 13 03:14:32 1993 +0100
@@ -1,5 +1,5 @@
 "
- COPYRIGHT (c) 1991-93 by Claus Gittinger
+ COPYRIGHT (c) 1991 by Claus Gittinger
               All Rights Reserved
 
  This software is furnished under a license and may be used
@@ -19,14 +19,14 @@
 
 Dictionary comment:'
 
-COPYRIGHT (c) 1991-93 by Claus Gittinger
+COPYRIGHT (c) 1991 by Claus Gittinger
               All Rights Reserved
 
 a Dictionary is (conceptionally) a collection of Associations storing key-value pairs.
 (The implementation uses two array to store the keys and values separately.)
 Searching for an element is done using a hash into the key arrlay.
 
-$Header: /cvs/stx/stx/libbasic/Attic/Dict.st,v 1.3 1993-10-13 00:15:31 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Attic/Dict.st,v 1.4 1993-10-13 02:11:42 claus Exp $
 
 written jun 91 by claus
 rewritten 92 to use hash scheme