Dictionary.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 24408 5a0a248e33e6
child 24502 af543de49215
permissions -rw-r--r--
#REFACTORING by exept class: Smalltalk class changed: #recursiveInstallAutoloadedClassesFrom:rememberIn:maxLevels:noAutoload:packageTop:showSplashInLevels: Transcript showCR:(... bindWith:...) -> Transcript showCR:... with:...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24350
5e7ccf17def9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24196
diff changeset
     1
"{ Encoding: utf8 }"
5e7ccf17def9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24196
diff changeset
     2
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     3
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     4
 COPYRIGHT (c) 1991 by Claus Gittinger
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
     5
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
"
5362
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
    14
"{ Package: 'stx:libbasic' }"
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
    15
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
    16
"{ NameSpace: Smalltalk }"
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
    17
12
8e03bd717355 *** empty log message ***
claus
parents: 10
diff changeset
    18
Set subclass:#Dictionary
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
    19
	instanceVariableNames:'valueArray'
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
    20
	classVariableNames:''
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
    21
	poolDictionaries:''
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
    22
	category:'Collections-Unordered'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    24
2094
42cd02703bf4 handle recursive printString/displayString
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
    25
!Dictionary class methodsFor:'documentation'!
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    26
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    27
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 COPYRIGHT (c) 1991 by Claus Gittinger
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
    30
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    37
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    38
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    39
!
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    40
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    41
documentation
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    42
"
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    43
    a Dictionary is (conceptionally) a set of Associations storing key-value pairs.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    44
    (The implementation uses two arrays to store the keys and values separately.)
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    45
    Searching for an element is done using a hash into the key array.
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
    46
    Another way of looking at a dictionary is as an array that uses
345
claus
parents: 302
diff changeset
    47
    arbitrary access keys (i.e. not just integers as arrays do).
claus
parents: 302
diff changeset
    48
claus
parents: 302
diff changeset
    49
    Since the keys are unordered, no internal element order is defined
362
claus
parents: 360
diff changeset
    50
    (i.e. enumerating them may return elements in any order - even changing
345
claus
parents: 302
diff changeset
    51
     over time).
claus
parents: 302
diff changeset
    52
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    53
    Many methods for searching and hashing are inherited from Set.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    54
1279
ad7a3786e73a commentary
Claus Gittinger <cg@exept.de>
parents: 1256
diff changeset
    55
    [Instance variables:]
345
claus
parents: 302
diff changeset
    56
15800
be0b36a7c1e2 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15786
diff changeset
    57
        keyArray        <Array>         (from Set) the keys
1279
ad7a3786e73a commentary
Claus Gittinger <cg@exept.de>
parents: 1256
diff changeset
    58
15800
be0b36a7c1e2 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15786
diff changeset
    59
        valueArray      <Array>         the values ('valueArray at:index' corresponds
be0b36a7c1e2 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15786
diff changeset
    60
                                        to the value stored under 'keyArray at:index')
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    61
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
    62
    Performance hints:
362
claus
parents: 360
diff changeset
    63
      since the dictionary does not really store associations internally,
claus
parents: 360
diff changeset
    64
      it is less efficient, to store/retrieve associations. The reason is
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
    65
      that these assocs are created temporarily in some extract methods.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
    66
      I.e. 'at:key put:value' is faster than 'add:anAssoc'
345
claus
parents: 302
diff changeset
    67
      and 'keysAndValuesDo:' is faster than 'associationsDo:' etc.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    68
362
claus
parents: 360
diff changeset
    69
      If only symbols or smallIntegers are used as keys, use IdentityDictionaries
claus
parents: 360
diff changeset
    70
      for slightly better performance, since both hashing and comparison is faster.
345
claus
parents: 302
diff changeset
    71
claus
parents: 302
diff changeset
    72
      If you have a rough idea how big the dictionary is going to grow,
claus
parents: 302
diff changeset
    73
      create it using #new: instead of #new. Even if the size given is a
claus
parents: 302
diff changeset
    74
      poor guess (say half of the real size), there is some 20-30% performance
claus
parents: 302
diff changeset
    75
      win to expect, since many resizing operations are avoided when associations
claus
parents: 302
diff changeset
    76
      are added.
362
claus
parents: 360
diff changeset
    77
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
    78
    Special note:
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
    79
      in previous versions, nil was not allowed as valid key
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
    80
      This has been changed; internally, a special nil-key is used,
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
    81
      which is converted back to nil whenever keys are accessed.
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
    82
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1279
diff changeset
    83
    [See also:]
15800
be0b36a7c1e2 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15786
diff changeset
    84
        Set, IdentityDictionary, IdentitySet, WeakIdentitySet and
be0b36a7c1e2 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15786
diff changeset
    85
        WeakIdentityDictionary
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1279
diff changeset
    86
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1279
diff changeset
    87
    [author:]
15800
be0b36a7c1e2 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15786
diff changeset
    88
        Claus Gittinger
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
    89
"
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    90
!
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    91
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    92
examples
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    93
"
19123
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
    94
                                                                        [exBegin]
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    95
    |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    96
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    97
    d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    98
    d at:'1' put:'one'.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
    99
    d at:2 put:'two'.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   100
    d at:2
19123
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   101
                                                                        [exEnd]
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   102
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   103
                                                                        [exBegin]
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   104
    |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   105
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   106
    d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   107
    d at:'1' put:'one'.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   108
    d at:2   put:nil.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   109
    d.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   110
    d at:2
19123
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   111
                                                                        [exEnd]
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   112
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   113
                                                                        [exBegin]
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   114
    |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   115
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   116
    d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   117
    d at:'1' put:'one'.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   118
    d at:2   put:nil.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   119
    d includes:nil.
19123
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   120
                                                                        [exEnd]
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   121
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   122
                                                                        [exBegin]
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   123
    |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   124
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   125
    d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   126
    d at:'1' put:'one'.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   127
    d includes:nil.
19123
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   128
                                                                        [exEnd]
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   129
                                                                        [exBegin]
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   130
    |d1 d2|
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   131
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   132
    d1 := Dictionary withKeys:#(a b c) andValues:#( 1 2 3).
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   133
    d2 := Dictionary newFrom:d1.
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   134
    d2.
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   135
                                                                        [exEnd]
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   136
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   137
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   138
! !
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   139
2094
42cd02703bf4 handle recursive printString/displayString
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   140
!Dictionary class methodsFor:'instance creation'!
345
claus
parents: 302
diff changeset
   141
6100
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   142
decodeFromLiteralArray:anArray
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   143
    "create & return a new instance from information encoded in anArray."
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   144
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   145
    |dictionary
8831
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8434
diff changeset
   146
     sz "{ Class: SmallInteger }"|
6100
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   147
8831
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8434
diff changeset
   148
    sz := anArray size.
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8434
diff changeset
   149
    dictionary := self new:sz//2.
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8434
diff changeset
   150
    2 to:sz by:2 do:[:idx | |key val|
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   151
	key := (anArray at:idx) decodeAsLiteralArray.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   152
	val := (anArray at:idx+1) decodeAsLiteralArray.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   153
	dictionary at:key put:val
6100
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   154
    ].
8831
918f291920c2 Speed up #decodeFromLiteralArray:
Stefan Vogel <sv@exept.de>
parents: 8434
diff changeset
   155
    ^ dictionary
6100
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   156
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   157
    "
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   158
     (Dictionary new
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   159
	 at:1 put:'one';
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   160
	 at:2 put:'two';
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   161
	 yourself
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   162
     ) literalArrayEncoding decodeAsLiteralArray
6100
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   163
    "
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   164
!
a3af162517fe add method decodeFromLiteralArray:
ab
parents: 6053
diff changeset
   165
19138
94f01d8445d3 #DOCUMENTATION
mawalch
parents: 19123
diff changeset
   166
withAssociations:aCollectionOfAssociations
5255
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   167
    "return a new instance where associations are taken from the argument"
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   168
23343
c468c2a13d50 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23337
diff changeset
   169
    |newDict|
c468c2a13d50 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23337
diff changeset
   170
c468c2a13d50 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23337
diff changeset
   171
    newDict := self new:aCollectionOfAssociations size.
19138
94f01d8445d3 #DOCUMENTATION
mawalch
parents: 19123
diff changeset
   172
    aCollectionOfAssociations do:[:assoc |
94f01d8445d3 #DOCUMENTATION
mawalch
parents: 19123
diff changeset
   173
        newDict at:assoc key put:assoc value
5255
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   174
    ].
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   175
    ^ newDict
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   176
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   177
    "
20972
08f1105af523 #DOCUMENTATION by mawalch
mawalch
parents: 20386
diff changeset
   178
     Dictionary withAssociations:{ #'one'->1 .
08f1105af523 #DOCUMENTATION by mawalch
mawalch
parents: 20386
diff changeset
   179
                                   #'two'->2 .
08f1105af523 #DOCUMENTATION by mawalch
mawalch
parents: 20386
diff changeset
   180
                                   #'three'->3 .
08f1105af523 #DOCUMENTATION by mawalch
mawalch
parents: 20386
diff changeset
   181
                                   #'four'->4 }
5255
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   182
    "
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   183
23343
c468c2a13d50 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23337
diff changeset
   184
    "Created: / 11-02-2000 / 10:05:54 / cg"
c468c2a13d50 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23337
diff changeset
   185
    "Modified: / 14-09-2018 / 18:11:31 / Stefan Vogel"
5255
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   186
!
cc5c0c1458aa added #withAssociations
Claus Gittinger <cg@exept.de>
parents: 5184
diff changeset
   187
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   188
withKeyValuePairs:aCollection
22214
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   189
    "return a new instance where keys and values are taken from 
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   190
     elements of aCollection, which are pairs (2-element SeuqenceableCollection) of key and value"
22214
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   191
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   192
    |newDict|
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   193
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   194
    newDict := self new:(aCollection size).
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   195
    aCollection do:[:pair |
22214
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   196
        newDict at:(pair first) put:(pair second)
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   197
    ].
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   198
    ^ newDict
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   199
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   200
    "
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   201
     Dictionary withKeyValuePairs:#( ('one' 1) ('two' 2) ('three' 3) ('four' 4))
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   202
     Dictionary withKeyValuePairs:#( ('one' 1) ('two' 2) ('three' 3) ('four' 4)) asSet
22214
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   203
    "
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   204
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   205
    "Created: / 27-08-2017 / 12:41:18 / cg"
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   206
    "Modified (comment): / 11-09-2018 / 15:29:40 / Stefan Vogel"
22214
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   207
!
9b9a903b62dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22170
diff changeset
   208
357
claus
parents: 345
diff changeset
   209
withKeys:keyArray andValues:valueArray
claus
parents: 345
diff changeset
   210
    "return a new instance where keys and values are taken from
claus
parents: 345
diff changeset
   211
     the argumentArrays."
claus
parents: 345
diff changeset
   212
claus
parents: 345
diff changeset
   213
    |newDict sz "{ Class: SmallInteger }"|
claus
parents: 345
diff changeset
   214
claus
parents: 345
diff changeset
   215
    sz := keyArray size.
claus
parents: 345
diff changeset
   216
    newDict := self new:sz.
20066
67c2e813b4e5 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19845
diff changeset
   217
    1 to:sz do:[:index |
67c2e813b4e5 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19845
diff changeset
   218
        newDict at:(keyArray at:index) put:(valueArray at:index).
357
claus
parents: 345
diff changeset
   219
    ].
claus
parents: 345
diff changeset
   220
    ^ newDict
claus
parents: 345
diff changeset
   221
claus
parents: 345
diff changeset
   222
    "
claus
parents: 345
diff changeset
   223
     Dictionary withKeys:#('one' 'two' 'three' 'four')
20066
67c2e813b4e5 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19845
diff changeset
   224
               andValues:#(1 2 3 4)
357
claus
parents: 345
diff changeset
   225
    "
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
   226
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
   227
19224
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   228
withKeys:aCollection valueBlock:aOneArgBlock
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   229
    "return a Dictionary with keys from aCollection's elements,
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   230
     using aOneArgBlock to generate the values from aCollection's elements."
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   231
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   232
    |d|
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   233
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   234
    d := self new:aCollection size.
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   235
    aCollection do:[:each|
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   236
        d at:each put:(aOneArgBlock value:each).
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   237
    ].
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   238
    ^ d
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   239
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   240
    "
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   241
     Dictionary withKeys:#(10 20 30 40 50 60 70 80 90) valueBlock:[:e| e asString]
19224
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   242
    "
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   243
!
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   244
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   245
withKeysAndValues:aSequenceableCollection
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   246
    "return a new instance where keys and values are taken from alternating
24408
5a0a248e33e6 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24350
diff changeset
   247
     elements of aSequenceableCollection"
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
   248
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   249
    |newDict sz "{ Class: SmallInteger }"|
345
claus
parents: 302
diff changeset
   250
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   251
    sz := aSequenceableCollection size.
23399
59fecf156230 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 23364
diff changeset
   252
    sz odd ifTrue:[
59fecf156230 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 23364
diff changeset
   253
        SubscriptOutOfBoundsError
59fecf156230 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 23364
diff changeset
   254
            raiseRequestWith:sz+1
59fecf156230 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 23364
diff changeset
   255
            errorString:('odd number of elements - subscript (' , (sz+1) printString , ') would be out of bounds')
59fecf156230 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 23364
diff changeset
   256
    ].
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   257
    newDict := self new:(sz // 2).
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   258
    1 to:sz by:2 do:[:i |
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   259
        newDict at:(aSequenceableCollection at:i) put:(aSequenceableCollection at:i+1)
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   260
    ].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   261
    ^ newDict
345
claus
parents: 302
diff changeset
   262
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   263
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   264
     Dictionary withKeysAndValues:#('one' 1 'two' 2 'three' 3 'four' 4)
23399
59fecf156230 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 23364
diff changeset
   265
     Dictionary withKeysAndValues:#('one' 1 'two' 2 'three' 3 'incomplete')
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   266
    "
23328
f56dbcff5536 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23191
diff changeset
   267
23399
59fecf156230 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 23364
diff changeset
   268
    "Modified: / 04-10-2018 / 10:08:31 / Stefan Vogel"
19224
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   269
!
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   270
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   271
withValues:aCollection keyBlock:aOneArgBlock
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   272
    "return a Dictionary with values from aCollection's elements,
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   273
     using aOneArgBlock to generate the keys from aCollection's elements."
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   274
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   275
    |d|
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   276
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   277
    d := self new:aCollection size.
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   278
    aCollection do:[:each|
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   279
        d at:(aOneArgBlock value:each) put:each.
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   280
    ].
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   281
    ^ d
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   282
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   283
    "
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   284
     Dictionary withValues:#(10 20 30 40 50 60 70 80 90) keyBlock:[:e| e asString]
19224
9799d5bedd22 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19138
diff changeset
   285
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   286
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   287
7306
909d88d8476f category
Claus Gittinger <cg@exept.de>
parents: 6233
diff changeset
   288
!Dictionary class methodsFor:'Compatibility-Squeak'!
5362
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   289
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   290
newFrom:aCollectionOfAssociations
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   291
    "return a new instance where associations are taken from the argument"
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   292
19123
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   293
    aCollectionOfAssociations isDictionary ifTrue:[
20170
0188f6e3daaa #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20168
diff changeset
   294
        ^ (self new:aCollectionOfAssociations size)
0188f6e3daaa #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20168
diff changeset
   295
                declareAllFrom:aCollectionOfAssociations.
19123
fc42a1e0c26b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19036
diff changeset
   296
    ].    
20170
0188f6e3daaa #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20168
diff changeset
   297
    ^ self withAssociations:aCollectionOfAssociations
5362
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   298
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   299
    "
20170
0188f6e3daaa #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20168
diff changeset
   300
     Dictionary newFrom:{#foo -> #Foo. #bar -> #Bar}
0188f6e3daaa #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20168
diff changeset
   301
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   302
     Dictionary
20170
0188f6e3daaa #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20168
diff changeset
   303
        newFrom:(Dictionary withKeysAndValues:#('one' 1 'two' 2 'three' 3 'four' 4))
5362
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   304
    "
21977
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   305
!
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   306
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   307
newFromPairs:aCollectionOfAssociations
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   308
    "return a new instance where associations are taken from the argument"
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   309
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   310
    ^ self newFrom:aCollectionOfAssociations
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   311
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   312
    "
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   313
     Dictionary newFromPairs:{ 1->#(1 2 3) . 'foo' -> 'bar' }
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   314
    "
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   315
6cf016389eec #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21792
diff changeset
   316
    "Created: / 04-07-2017 / 16:33:06 / cg"
5362
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   317
! !
a6b34f66b25f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5336
diff changeset
   318
12732
93312b4b2d17 added: #equals:
Claus Gittinger <cg@exept.de>
parents: 12669
diff changeset
   319
!Dictionary methodsFor:'Compatibility-Dolphin'!
93312b4b2d17 added: #equals:
Claus Gittinger <cg@exept.de>
parents: 12669
diff changeset
   320
93312b4b2d17 added: #equals:
Claus Gittinger <cg@exept.de>
parents: 12669
diff changeset
   321
equals:aDictionary
93312b4b2d17 added: #equals:
Claus Gittinger <cg@exept.de>
parents: 12669
diff changeset
   322
    ^ self = aDictionary
93312b4b2d17 added: #equals:
Claus Gittinger <cg@exept.de>
parents: 12669
diff changeset
   323
! !
93312b4b2d17 added: #equals:
Claus Gittinger <cg@exept.de>
parents: 12669
diff changeset
   324
17671
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   325
!Dictionary methodsFor:'Compatibility-VW5.4'!
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   326
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   327
contentsEquals: aDictionary
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   328
    "Anwer true if  the receiver and aDictionary contain the same key/values.
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   329
     (ignoring the classes)"
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   330
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   331
    self size == aDictionary size ifFalse: [ ^false ].
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   332
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   333
    self keysAndValuesDo: [ :key :value |
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   334
        ( aDictionary at: key ifAbsent: [ ^false ] ) = value
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   335
        ifFalse: [ ^false ]
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   336
    ].
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   337
    ^ true
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   338
! !
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
   339
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   340
!Dictionary methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   341
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   342
associationAt:aKey
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   343
    "return an association consisting of aKey and the element indexed
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   344
     by aKey -
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   345
     report an error, if no element is stored under aKey"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   346
15008
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   347
    ^ self associationAt:aKey ifAbsent:[self errorKeyNotFound:aKey]
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   348
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   349
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   350
associationAt:aKey ifAbsent:exceptionBlock
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   351
    "return an association consisting of aKey and the element indexed by aKey -
14971
04b3466c98b7 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14897
diff changeset
   352
     return result of exceptionBlock if no element is stored under aKey.
04b3466c98b7 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14897
diff changeset
   353
     Warning: this is a comatibility interface only, with a different semantic as
04b3466c98b7 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14897
diff changeset
   354
              the original ST80 implementation. The returned assoc is created on the fly,
04b3466c98b7 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14897
diff changeset
   355
              and not the one stored in the receiver (there are not assocs there)"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   356
15008
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   357
    |index|
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   358
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   359
    "/ must return the real key in the assoc - not aKey, which might be equal but not identical
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   360
    index := self find:aKey ifAbsent:0.
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   361
    index ~~ 0 ifTrue:[
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   362
        ^ Association key:(keyArray basicAt:index) value:(valueArray basicAt:index)
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   363
    ].
a474f18209d4 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 14997
diff changeset
   364
    ^ exceptionBlock value
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   365
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   366
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   367
associations
19468
0164eb8f7c28 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19275
diff changeset
   368
    "return an ordered collection containing the receiver's associations."
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   369
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   370
    |coll|
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   371
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   372
    coll := OrderedCollection new:(keyArray size).
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   373
    self associationsDo:[:assoc | coll add:assoc].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   374
    ^ coll
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   375
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   376
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   377
at:aKey
a27a279701f8 Initial revision
claus
parents:
diff changeset
   378
    "return the element indexed by aKey - report an error if none found"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   379
6233
0a79cbd07543 *** empty log message ***
martin
parents: 6101
diff changeset
   380
    ^ self at:aKey ifAbsent:[self errorKeyNotFound:aKey]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   381
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   382
a27a279701f8 Initial revision
claus
parents:
diff changeset
   383
at:aKey ifAbsent:exceptionBlock
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   384
    "return the element indexed by aKey -
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   385
     return result of exceptionBlock if no element is stored under aKey"
2
claus
parents: 1
diff changeset
   386
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   387
    |index k|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   388
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   389
    (k := aKey) isNil ifTrue:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   390
	"/ nil is not allowed as key
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   391
	"/
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   392
	"/ previous versions of ST/X raised an error
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   393
	"/ here. However, there seem to exist applications
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   394
	"/ which depend on getting the exceptionBlocks value
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   395
	"/ in this case ... well ...
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   396
	"/ ^ self errorInvalidKey:aKey
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   397
"/ no longer invalid.
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   398
"/      ^ exceptionBlock value
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   399
	k := NilEntry
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   400
    ].
362
claus
parents: 360
diff changeset
   401
claus
parents: 360
diff changeset
   402
    "/ I could have written:
claus
parents: 360
diff changeset
   403
    "/ index := self find:aKey ifAbsent:[^ exceptionBlock value]
claus
parents: 360
diff changeset
   404
    "/ but the code below is slighlty more efficient, since it avoids
1146
edadea7273b6 commentary
Claus Gittinger <cg@exept.de>
parents: 1126
diff changeset
   405
    "/ a block creation - thus speeding up the good case.
362
claus
parents: 360
diff changeset
   406
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   407
    index := self find:k ifAbsent:0.
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   408
    index ~~ 0 ifTrue:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   409
	^ valueArray basicAt:index
1126
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   410
    ].
497de696dff0 OOPS - could add elements twice after a remove (shame on me: how could that go unnoticed for so long ...)
Claus Gittinger <cg@exept.de>
parents: 1056
diff changeset
   411
    ^ exceptionBlock value.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   412
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   413
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   414
at:aKey ifAbsent:default update:aBlock
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   415
    "update the element stored under aKey with the result from
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   416
     evaluating aBlock with the previous stored value as argument, or with default,
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   417
     if there was no such key initially.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   418
     I.e. this is the same as self at:aKey put:(aBlock value:(self at:aKey ifAbsent:default)).
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   419
     Return the new value stored.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   420
     This is an optimized accessor, which only computes the hash value once."
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   421
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   422
    |k index "{ Class: SmallInteger }"
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   423
     newValue oldKeyArray oldKey|
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   424
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   425
    (k := aKey) isNil ifTrue:[
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   426
        k := NilEntry
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   427
    ].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   428
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   429
    oldKeyArray := keyArray.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   430
    index := self findKeyOrNilOrDeletedEntry:k.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   431
    oldKey := keyArray basicAt:index.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   432
    (oldKey notNil and:[oldKey ~~ DeletedEntry]) ifTrue:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   433
        "/ key is present
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   434
        newValue := aBlock value:(valueArray basicAt:index).
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   435
    ] ifFalse:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   436
        "/ a new key
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   437
        newValue := aBlock value:default.
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   438
    ].
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   439
    (keyArray ~~ oldKeyArray or:[(keyArray basicAt:index) ~~ oldKey]) ifTrue:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   440
        "I have been changed while performing aBlock.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   441
         have to find the key again."
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   442
        index := self findKeyOrNil:k.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   443
    ].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   444
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   445
    valueArray basicAt:index put:newValue.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   446
    oldKey := keyArray basicAt:index.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   447
    (oldKey isNil or:[oldKey == DeletedEntry]) ifTrue:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   448
        "key is not or no longer present"
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   449
        keyArray basicAt:index put:k.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   450
        tally := tally + 1.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   451
        self possiblyGrow.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   452
    ].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   453
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   454
    ^ newValue
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   455
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   456
    "
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   457
     |d|
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   458
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   459
     d := Dictionary new.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   460
     d at:'one'  ifAbsent:0 update:[:val | val + 1].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   461
     d at:'two'  ifAbsent:0 update:[:val | val + 1].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   462
     d at:'three' ifAbsent:0  update:[:val | val + 1].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   463
     d at:'two' ifAbsent:0  update:[:val | val + 1].
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   464
     d at:'three' ifAbsent:0  update:[:val | val + 1].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   465
     d at:'three' ifAbsent:0  update:[:val | val + 1].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   466
     d
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   467
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   468
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   469
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   470
     |d|
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   471
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   472
     d := Dictionary new.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   473
     d at:'two'  ifAbsent:0 update:[:val | val + 1].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   474
     d at:'two'  ifAbsent:0 update:[:val | 1 to:30 do:[:idx| d at:idx printString put:idx]. val + 1].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   475
     d
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   476
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   477
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   478
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   479
     |d|
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   480
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   481
     d := Dictionary new.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   482
     d at:'two'  ifAbsent:0 update:[:val | val + 1].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   483
     d at:'two'  ifAbsent:0 update:[:val | d removeKey:'two'. val + 1].
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   484
     d
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   485
    "
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   486
!
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   487
3304
19ee5d1685d8 Make #at:ifAbsentPut: ST80 (and STBroker compatible).
Stefan Vogel <sv@exept.de>
parents: 3252
diff changeset
   488
at:aKey ifAbsentPut:valueBlock
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   489
    "return the element indexed by aKey if present,
3304
19ee5d1685d8 Make #at:ifAbsentPut: ST80 (and STBroker compatible).
Stefan Vogel <sv@exept.de>
parents: 3252
diff changeset
   490
     if not present, store the result of evaluating valueBlock
19ee5d1685d8 Make #at:ifAbsentPut: ST80 (and STBroker compatible).
Stefan Vogel <sv@exept.de>
parents: 3252
diff changeset
   491
     under aKey and return it.
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   492
     WARNING: do not add elements while iterating over the receiver.
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
   493
              Iterate over a copy to do this."
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   494
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   495
    |index "{ Class: SmallInteger }"
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   496
     k newValue oldKeyArray probeKey|
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   497
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   498
    (k := aKey) isNil ifTrue:[
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
   499
        k := NilEntry
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   500
    ].
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   501
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   502
    index := self findKeyOrNilOrDeletedEntry:k.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   503
    probeKey := keyArray basicAt:index.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   504
    (probeKey notNil and:[probeKey ~~ DeletedEntry]) ifTrue:[
20224
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   505
        "/ key is already present
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
   506
        ^ valueArray at:index.
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   507
    ].
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   508
20224
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   509
    "/ a new key
19545
354bb04991c7 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 19468
diff changeset
   510
    oldKeyArray := keyArray.
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   511
    newValue := valueBlock value.
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   512
    (keyArray ~~ oldKeyArray or:[(keyArray basicAt:index) ~~ probeKey]) ifTrue:[
20224
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   513
        "I have been changed while performing the valueBlock.
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   514
         have to find the key again."
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   515
        index := self findKeyOrNil:k.
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   516
        (keyArray basicAt:index) notNil ifTrue:[
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   517
            "/ key was not, but is now present.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   518
            "/ since we executed the valueBlock, overwrite the value in the Dictionary
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   519
            valueArray at:index put:newValue.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   520
            ^ newValue
20224
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   521
        ].
19545
354bb04991c7 #QUALITY by stefan
Stefan Vogel <sv@exept.de>
parents: 19468
diff changeset
   522
    ].
20224
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   523
    "/ a new key...
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   524
    keyArray basicAt:index put:k.
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   525
    valueArray basicAt:index put:newValue.
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   526
    tally := tally + 1.
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   527
    self possiblyGrow.
d075f60fbd7b #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20170
diff changeset
   528
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   529
    ^ newValue
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   530
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   531
    "
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   532
     |d|
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   533
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   534
     d := Dictionary new.
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   535
     Transcript showCR:(d at:'foo' ifAbsentPut:'bar').
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   536
     Transcript showCR:(d at:'foo2' ifAbsentPut:'bar2').
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   537
     Transcript showCR:(d at:'foo' ifAbsentPut:'barX').
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   538
     Transcript showCR:(d at:'foo2' ifAbsentPut:'bar2X').
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   539
    "
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   540
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   541
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   542
     |d|
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   543
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   544
     d := Dictionary new.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   545
     d at:'one' ifAbsentPut:[d at:'one' put:1. 33333].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   546
     d
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   547
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   548
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   549
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   550
     |d|
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   551
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   552
     d := Dictionary new.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   553
     d at:'two'  ifAbsentPut:[1 to:30 do:[:idx| d at:idx printString put:idx]. 2].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   554
     d
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   555
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   556
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   557
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   558
    "Created: / 23.1.1998 / 18:28:26 / cg"
3304
19ee5d1685d8 Make #at:ifAbsentPut: ST80 (and STBroker compatible).
Stefan Vogel <sv@exept.de>
parents: 3252
diff changeset
   559
    "Modified: / 26.2.1998 / 19:10:09 / stefan"
3215
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   560
!
dbb2ee7a5cb9 added #at:ifAbsentPut:
Claus Gittinger <cg@exept.de>
parents: 3192
diff changeset
   561
4871
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   562
at:aKey ifPresent:aBlock
19275
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   563
    "try to retrieve the value stored at aKey.
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   564
     If there is nothing stored under this key, do nothing.
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   565
     Otherwise, evaluate aBlock, passing the retrieved value as argument."
4871
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   566
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   567
    |v|
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   568
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   569
    v := self at:aKey ifAbsent:[^ nil].
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   570
    ^ aBlock value:v.
19275
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   571
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   572
    "
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   573
     |d|
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   574
     d := Dictionary new.
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   575
     d at:#foo put:'yes this is foo'.
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   576
19275
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   577
     d at:#foo ifPresent:[:val | Transcript showCR:'the value of foo is: ',val].
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   578
     d at:#bar ifPresent:[:val | Transcript showCR:'the value of bar is: ',val].
92622b5a769b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19273
diff changeset
   579
    "
4871
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   580
!
211a7f44946d added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 3919
diff changeset
   581
22014
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   582
at:aKey ifPresent:presentBlock ifAbsent:absentBlock
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   583
    "try to retrieve the value stored at aKey.
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   584
     If there is nothing stored under this key, 
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   585
     return the value from absentBlock;
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   586
     otherwise, answer the value from presentBlock, optionally passing the stored value."
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   587
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   588
    |v|
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   589
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   590
    v := self at:aKey ifAbsent:[^ absentBlock value].
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   591
    ^ presentBlock valueWithOptionalArgument:v.
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   592
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   593
    "
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   594
     |d|
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   595
     d := Dictionary new.
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   596
     d at:#foo put:'yes this is foo'.
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   597
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   598
     d at:#foo 
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   599
        ifPresent:[:val | Transcript showCR:'the value of foo is: ',val. val]
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   600
        ifAbsent:[ Transcript showCR:'not present'. 123].
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   601
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   602
     d at:#bar 
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   603
        ifPresent:[:val | Transcript showCR:'the value of bar is: ',val. val]
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   604
        ifAbsent:[ Transcript showCR:'not present'. 123].
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   605
    "
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   606
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   607
    "Created: / 14-07-2017 / 00:04:09 / cg"
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   608
!
947d38b2327c #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21977
diff changeset
   609
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   610
at:aKey put:anObject
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   611
    "add the argument anObject under key, aKey to the receiver.
1221
46d72af387e9 commentary
Claus Gittinger <cg@exept.de>
parents: 1146
diff changeset
   612
     Return anObject (sigh).
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   613
     WARNING: do not add elements while iterating over the receiver.
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
   614
              Iterate over a copy to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   615
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   616
    |k index "{ Class: SmallInteger }"|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   617
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   618
    (k := aKey) isNil ifTrue:[
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
   619
        k := NilEntry
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   620
    ].
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   621
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   622
    index := self findKeyOrNil:k.
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   623
    valueArray basicAt:index put:anObject.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   624
    (keyArray basicAt:index) isNil ifTrue:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   625
        "/ a new key
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   626
        keyArray basicAt:index put:k.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   627
        tally := tally + 1.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   628
        self possiblyGrow.
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   629
    ].
362
claus
parents: 360
diff changeset
   630
    ^ anObject
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   631
2328
0fd1d715e5a9 oops - the last one was not good
Claus Gittinger <cg@exept.de>
parents: 2324
diff changeset
   632
    "Modified: 30.1.1997 / 14:59:10 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   633
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   634
19273
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   635
at:aKey put:anObject ifPresent:aBlock
11420
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   636
    "if the receiver contains an element stored under aKey,
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   637
     retrieve it and evaluate aBlock passing the element as argument,
23889
6791b56c5de4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23842
diff changeset
   638
     return the block's value.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   639
     If not, store aValue under the key.
11420
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   640
     Use this with an error-reporting block, to ensure that no keys are reused"
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   641
19273
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   642
    |k index "{ Class: SmallInteger }"|
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   643
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   644
    (k := aKey) isNil ifTrue:[
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   645
        k := NilEntry
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   646
    ].
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   647
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   648
    index := self findKeyOrNil:k.
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   649
    (keyArray basicAt:index) notNil ifTrue:[
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   650
        "/ key already present
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   651
        ^ aBlock value:(valueArray basicAt:index).
19273
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   652
    ].
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   653
    "/ a new key
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   654
    keyArray basicAt:index put:k.
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   655
    valueArray basicAt:index put:anObject.
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   656
    tally := tally + 1.
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   657
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   658
    self possiblyGrow.
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   659
    ^ anObject
11420
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   660
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   661
    "
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   662
     |d|
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   663
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   664
     d := Dictionary new.
19273
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   665
     d at:'foo' put:1234 ifPresent:[:v| self error: 'duplicate: ', v printString ].
765937bb892a #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19224
diff changeset
   666
     d at:'foo' put:1234 ifPresent:[:v| self halt:'duplicate: ', v printString. 5555 ].
11420
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   667
    "
23889
6791b56c5de4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23842
diff changeset
   668
6791b56c5de4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23842
diff changeset
   669
    "Modified (comment): / 13-03-2019 / 10:24:50 / Claus Gittinger"
11420
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   670
!
9d37ee5d25c0 added at:put:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 10808
diff changeset
   671
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   672
at:aKey update:aBlock
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
   673
    "update the element stored under aKey with the result from
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   674
     evaluating aBlock with the previous stored value as argument.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   675
     Report an error if there was no such key initially.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   676
     I.e. this is the same as self at:aKey put:(aBlock value:(self at:aKey)).
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   677
     Return the new value stored.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   678
     This is an optimized accessor, which only computes the hash value once."
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   679
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   680
    |k index "{ Class: SmallInteger }"
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   681
     newValue oldKey oldKeyArray|
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   682
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   683
    (k := aKey) isNil ifTrue:[
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   684
        k := NilEntry
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   685
    ].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   686
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   687
    index := self find:k ifAbsent:0.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   688
    index == 0 ifTrue:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   689
        "/ a new key
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   690
        ^ self errorKeyNotFound:k.
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   691
    ].
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   692
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   693
    "/ key present
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   694
    oldKey := keyArray basicAt:index.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   695
    oldKeyArray := keyArray.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   696
    newValue := aBlock value:(valueArray basicAt:index).
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   697
    (keyArray ~~ oldKeyArray or:[(keyArray basicAt:index) ~~ oldKey]) ifTrue:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   698
        "I have been changed while performing aBlock.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   699
         have to find the key again."
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   700
        index := self find:k ifAbsent:0.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   701
        index == 0 ifTrue:[
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   702
            "/ the key is gone while performing the block.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   703
            ^ self errorKeyNotFound:k.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   704
        ].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   705
    ].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   706
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   707
    valueArray basicAt:index put:newValue.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   708
    ^ newValue
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   709
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   710
    "
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   711
     |d|
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   712
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   713
     d := Dictionary new.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   714
     d at:'one'  update:[:val | val + 1].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   715
    "
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   716
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   717
    "
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   718
     |d|
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   719
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   720
     d := Dictionary new.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   721
     d at:'one' put:0.
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   722
     d at:'one'  update:[:val | d removeKey:'one'. val + 1].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   723
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   724
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   725
    "
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   726
     |d|
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   727
     d := Dictionary new.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   728
     d at:'one' put:0.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   729
     d at:'two' put:0.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   730
     d at:'three' put:0.
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   731
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   732
     d at:'one'    update:[:val | val + 1].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   733
     d at:'two'    update:[:val | val + 1].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   734
     d at:'three'  update:[:val | val + 1].
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   735
     d at:'two'    update:[:val | val + 1].
20239
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   736
     d at:'three'  update:[:val | val + 1].
cc11bc01e248 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20228
diff changeset
   737
     d at:'three'  update:[:val | val + 1].
16902
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   738
     d
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   739
    "
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   740
!
869a0975a957 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 16808
diff changeset
   741
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   742
keyAtEqualValue:aValue
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   743
    "return the key whose value is equal (i.e. using #= for compare)
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   744
     to the argument, nil if none found.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   745
     This is a slow access, since there is no fast reverse mapping.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   746
     NOTICE:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   747
	The value is searched using equality compare;
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
   748
	use #keyAtValue: to compare for identity."
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
   749
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   750
    ^ self keyAtEqualValue:aValue ifAbsent:[nil]
10
claus
parents: 5
diff changeset
   751
!
claus
parents: 5
diff changeset
   752
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   753
keyAtEqualValue:aValue ifAbsent:exceptionBlock
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   754
    "return the key whose value is equal (i.e. using #= for compare)
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   755
     to the argument, if not found, return the value of exceptionBlock.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   756
     This is a slow access, since there is no fast reverse mapping.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   757
     NOTICE:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   758
	The value is searched using equality compare;
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   759
	use #keyAtValue:ifAbsent: to compare for identity."
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   760
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   761
    |idx k|
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
   762
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   763
    idx := 0.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   764
    [true] whileTrue:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   765
	idx := valueArray indexOf:aValue startingAt:idx+1.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   766
	idx == 0 ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   767
	    ^ exceptionBlock value
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   768
	].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   769
	(k := keyArray at:idx) notNil ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   770
	    k ~~ DeletedEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   771
		k == NilEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   772
		    ^ nil
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   773
		].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   774
		^ k
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   775
	    ].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   776
	].
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   777
    ].
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   778
    "/ NOT REACHED
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
   779
!
06dbdeeed4f9 *** empty log message ***
claus
parents: 44
diff changeset
   780
22977
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   781
keyAtIdenticalValue:aValue
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   782
    "for protocol compatibility only:
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   783
     return the key whose value is identical (i.e. using #== for compare)
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   784
     to the argument, nil if none found.
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   785
     This is a slow access, since there is no fast reverse mapping.
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   786
     NOTICE:
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   787
        The value is searched using identity compare;
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   788
        use #keyAtEqualValue: to compare for equality."
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   789
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   790
    ^ self keyAtIdentityValue:aValue
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   791
!
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   792
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   793
keyAtIdenticalValue:aValue ifAbsent:exceptionBlock
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   794
    "for protocol compatibility only:
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   795
     return the key whose value is identical (i.e. using #== for compare)
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   796
     to the argument, nil if none found.
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   797
     This is a slow access, since there is no fast reverse mapping.
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   798
     NOTICE:
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   799
        The value is searched using identity compare;
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   800
        use #keyAtEqualValue: to compare for equality."
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   801
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   802
    ^ self keyAtIdentityValue:aValue ifAbsent:exceptionBlock
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   803
!
6069c5ca7b34 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22952
diff changeset
   804
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   805
keyAtIdentityValue:aValue
345
claus
parents: 302
diff changeset
   806
    "return the key whose value is identical (i.e. using #== for compare)
claus
parents: 302
diff changeset
   807
     to the argument, nil if none found.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
   808
     This is a slow access, since there is no fast reverse mapping.
357
claus
parents: 345
diff changeset
   809
     NOTICE:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   810
	The value is searched using identity compare;
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   811
	use #keyAtEqualValue: to compare for equality."
10
claus
parents: 5
diff changeset
   812
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   813
    ^ self keyAtIdentityValue:aValue ifAbsent:[nil]
10
claus
parents: 5
diff changeset
   814
!
claus
parents: 5
diff changeset
   815
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   816
keyAtIdentityValue:aValue ifAbsent:exceptionBlock
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   817
    "return the key whose value is identical (i.e. using #== for compare)
345
claus
parents: 302
diff changeset
   818
     to the argument, if not found, return the value of exceptionBlock.
357
claus
parents: 345
diff changeset
   819
     This is a slow access, since there is no fast reverse mapping.
claus
parents: 345
diff changeset
   820
     NOTICE:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   821
	The value is searched using identity compare;
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   822
	use #keyAtEqualValue:ifAbsent: to compare for equality."
10
claus
parents: 5
diff changeset
   823
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   824
    |idx k|
359
claus
parents: 357
diff changeset
   825
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   826
    idx := 0.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   827
    [true] whileTrue:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   828
	idx := valueArray identityIndexOf:aValue startingAt:idx+1.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   829
	idx == 0 ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   830
	    ^ exceptionBlock value
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   831
	].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   832
	(k := keyArray at:idx) notNil ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   833
	    k ~~ DeletedEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   834
		k == NilEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   835
		    ^ nil
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   836
		].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   837
		^ k
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   838
	    ].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   839
	].
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   840
    ].
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
   841
    "/ NOT REACHED
357
claus
parents: 345
diff changeset
   842
!
claus
parents: 345
diff changeset
   843
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   844
keyAtValue:aValue
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   845
    "return the key whose value is identical (i.e. using #== for compare)
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   846
     to the argument, nil if none found.
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   847
     This is a slow access, since there is no fast reverse mapping.
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   848
     NOTICE:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   849
	The value is searched using identity compare;
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   850
	use #keyAtEqualValue: to compare for equality."
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   851
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   852
    ^ self keyAtIdentityValue:aValue ifAbsent:[nil]
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   853
!
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   854
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   855
keyAtValue:aValue ifAbsent:exceptionBlock
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   856
    "return the key whose value is identical (i.e. using #== for compare)
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   857
     to the argument, if not found, return the value of exceptionBlock.
21366
1dbe9c48550b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21349
diff changeset
   858
     This is a slow access, since there is no fast reverse mapping
1dbe9c48550b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21349
diff changeset
   859
     (receiver is searched sequentially).
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   860
     NOTICE:
21366
1dbe9c48550b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21349
diff changeset
   861
        The value is searched using identity compare;
1dbe9c48550b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21349
diff changeset
   862
        use #keyAtEqualValue:ifAbsent: to compare for equality."
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   863
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   864
    ^ self keyAtIdentityValue:aValue ifAbsent:exceptionBlock
21366
1dbe9c48550b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21349
diff changeset
   865
1dbe9c48550b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21349
diff changeset
   866
    "Modified (comment): / 07-02-2017 / 11:05:11 / cg"
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   867
!
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
   868
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   869
keys
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   870
    "return a collection containing all keys of the receiver"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   871
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   872
    |keySet|
357
claus
parents: 345
diff changeset
   873
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   874
    keySet := self emptyCollectionForKeys.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   875
    keyArray do:[:key |
14320
0050f5925f57 changed: #keys
Stefan Vogel <sv@exept.de>
parents: 14318
diff changeset
   876
        (key notNil and:[key ~~ DeletedEntry]) ifTrue:[
0050f5925f57 changed: #keys
Stefan Vogel <sv@exept.de>
parents: 14318
diff changeset
   877
            key == NilEntry ifTrue:[
0050f5925f57 changed: #keys
Stefan Vogel <sv@exept.de>
parents: 14318
diff changeset
   878
                keySet add:nil
0050f5925f57 changed: #keys
Stefan Vogel <sv@exept.de>
parents: 14318
diff changeset
   879
            ] ifFalse:[
0050f5925f57 changed: #keys
Stefan Vogel <sv@exept.de>
parents: 14318
diff changeset
   880
                keySet add:key
0050f5925f57 changed: #keys
Stefan Vogel <sv@exept.de>
parents: 14318
diff changeset
   881
            ]
0050f5925f57 changed: #keys
Stefan Vogel <sv@exept.de>
parents: 14318
diff changeset
   882
        ]
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   883
    ].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   884
    ^ keySet
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   885
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   886
a27a279701f8 Initial revision
claus
parents:
diff changeset
   887
!Dictionary methodsFor:'adding & removing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   888
a27a279701f8 Initial revision
claus
parents:
diff changeset
   889
add:anAssociation
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   890
    "add the argument, anAssociation to the receiver.
20386
819b3eefd460 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20239
diff changeset
   891
     Returns the argument, anAssociation.
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   892
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   893
     WARNING: do not add elements while iterating over the receiver.
14897
41e26dc8902b comment/format in: #add:
Claus Gittinger <cg@exept.de>
parents: 14320
diff changeset
   894
              Iterate over a copy to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   895
a27a279701f8 Initial revision
claus
parents:
diff changeset
   896
    self at:(anAssociation key) put:(anAssociation value).
a27a279701f8 Initial revision
claus
parents:
diff changeset
   897
    ^ anAssociation
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   898
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
   899
    "Modified: 1.3.1996 / 21:23:53 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   900
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   901
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
   902
addAll:aCollection
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   903
    "ANSI 5.7.2.1:
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
   904
     Message:  addAll: dictionary
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
   905
      Synopsis
23504
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   906
        Store the elements of dictionary in the receiver at the
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   907
        corresponding keys from dictionary.
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
   908
      Definition: <abstractDictionary>
23504
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   909
        This message is equivalent to repeatedly sending the #at:put:
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   910
        message to the receiver with each of the keys and elements in
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   911
        dictionary in turn.  If a key in dictionary is key equivalent
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   912
        to a key in the receiver, the associated element in dictionary
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   913
        replaces the element in the receiver.
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
   914
7750
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   915
     Returns the argument, aCollection (sigh).
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   916
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   917
     WARNING: do not add elements while iterating over the receiver.
23504
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   918
              Iterate over a copy to do this."
7750
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   919
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
   920
    self ~~ aCollection ifTrue:[
24082
6995fb26bd13 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23889
diff changeset
   921
        aCollection isSequenceable ifTrue:[
6995fb26bd13 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23889
diff changeset
   922
            "Association like objects"
23504
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   923
            aCollection do:[:eachPair |
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   924
                self at:eachPair key put:eachPair value.
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   925
            ].
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   926
        ] ifFalse:[
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   927
            aCollection keysAndValuesDo:[:eachKey :eachValue |
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   928
                self at:eachKey put:eachValue.
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   929
            ]
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   930
        ].
7750
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   931
    ].
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
   932
    ^ aCollection
7750
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   933
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   934
    "
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   935
     |d1 d2|
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   936
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   937
     d1 := Dictionary new.
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   938
     d1 at:1 put:'one'.
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   939
     d1 at:2 put:'two'.
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   940
     d2 := Dictionary new.
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   941
     d2 at:3 put:'three'.
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   942
     d2 at:4 put:'four'.
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   943
     d1 addAll:d2.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   944
     d1.
7750
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   945
    "
23504
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   946
2612ba8e3de4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23399
diff changeset
   947
    "Modified: / 04-11-2018 / 19:18:55 / Claus Gittinger"
24082
6995fb26bd13 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23889
diff changeset
   948
    "Modified (format): / 15-04-2019 / 19:28:36 / Stefan Vogel"
7750
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   949
!
5722e5569d3d fixed (added) #addAll:
Claus Gittinger <cg@exept.de>
parents: 7653
diff changeset
   950
23191
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   951
addOrReplace:anAssociation
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   952
    "add the argument, anAssociation to the receiver.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   953
     Returns the argument, anAssociation.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   954
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   955
     WARNING: do not add elements while iterating over the receiver.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   956
              Iterate over a copy to do this."
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   957
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   958
    |key old|
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   959
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   960
    key := anAssociation key.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   961
    old := self associationAt:key ifAbsent:nil.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   962
    (old notNil and:[old key ~~ key]) ifTrue:[
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   963
        self removeKey:key.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   964
    ].
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   965
    self at:key put:anAssociation value.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   966
    ^ old.
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   967
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   968
    "
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   969
        self new
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   970
            add:(1 -> 'one');
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   971
            addOrReplace:(1.0 -> 'ONE')   ; yourself
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   972
    "
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   973
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   974
    "Created: / 03-07-2018 / 19:41:23 / Stefan Vogel"
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   975
!
957e811d8a44 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22977
diff changeset
   976
2711
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   977
addPairsFrom:aSequenceableCollection
11673
baa4568523f0 comment
Claus Gittinger <cg@exept.de>
parents: 11581
diff changeset
   978
    "merge consecutive key-value pairs from aSequenceableCollection into the receiver."
2711
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   979
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   980
    aSequenceableCollection pairWiseDo:[:key :value |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   981
	self at:key put:value.
2711
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   982
    ]
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   983
7751
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   984
    "
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   985
     |d1 arr|
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   986
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   987
     d1 := Dictionary new.
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   988
     d1 at:1 put:'one'.
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   989
     d1 at:2 put:'two'.
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   990
     arr := #(3 'three'  4 'four').
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   991
     d1 addPairsFrom:arr.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
   992
     d1.
7751
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   993
    "
e6bfe9fd8ef8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7750
diff changeset
   994
2711
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   995
    "Modified: 1.3.1996 / 21:24:03 / cg"
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   996
!
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
   997
19813
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
   998
clearContents
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
   999
    "remove all elements from the receiver, but do not resize.
21349
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1000
     Returns the receiver.
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1001
     Similar to removeAll, but might behave better, 
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1002
     if the receiver is to be filled again afterwards."
19813
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
  1003
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
  1004
    keyArray atAllPut:nil.
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
  1005
    valueArray atAllPut:nil.
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
  1006
    tally := 0.
21349
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1007
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1008
    "Modified (comment): / 06-02-2017 / 12:54:52 / cg"
19813
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
  1009
!
01a9fdefab4c #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 19740
diff changeset
  1010
345
claus
parents: 302
diff changeset
  1011
declare:key from:aDictionary
claus
parents: 302
diff changeset
  1012
    "if the receiver does not include an association for key,
claus
parents: 302
diff changeset
  1013
     take the association from aDictionary and add it to the receiver.
claus
parents: 302
diff changeset
  1014
     If aDictionary does not contain such an association, use nil
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1015
     as the value of the new dictionary.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1016
9066
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1017
     Stubidity Notice:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1018
	 Incompatibility with #declareAllFrom:, where the other values are
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1019
	 defined unconditionally.
9066
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1020
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1021
     WARNING: do not add elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1022
	      Iterate over a copy to do this."
345
claus
parents: 302
diff changeset
  1023
claus
parents: 302
diff changeset
  1024
    |value|
claus
parents: 302
diff changeset
  1025
claus
parents: 302
diff changeset
  1026
    (self includesKey:key) ifFalse:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1027
	value := aDictionary at:key ifAbsent:nil.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1028
	self at:key put:value.
345
claus
parents: 302
diff changeset
  1029
    ]
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1030
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1031
    "Modified: 1.3.1996 / 21:24:03 / cg"
345
claus
parents: 302
diff changeset
  1032
!
claus
parents: 302
diff changeset
  1033
16451
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1034
declareAll:keys from:aCollectionOrDictionary
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1035
    "declare all keys in the first argument, keys
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1036
     from values taken from the second argument, aCollectionOrDictionary.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1037
     If aCollectionOrDictionary is a dictionary, access via the key;
21349
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1038
     if it is a sequencable collection, add corresponding values pairwise.
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1039
     Values present in the arg will always end up in the receiver;
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1040
     i.e. a value coming from the argument is already in the receiver,
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1041
     the value from aDictionaryOrNil is stored into the receiver."
16451
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1042
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1043
    aCollectionOrDictionary isDictionary ifTrue:[
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1044
        keys do:[:k | self at:k put:(aCollectionOrDictionary at:k) ]
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1045
    ] ifFalse:[
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1046
        keys with:aCollectionOrDictionary do:[:k :v | self at:k put:v ]
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1047
    ].
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1048
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1049
    "
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1050
     |d|
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1051
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1052
     d := Dictionary new.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1053
     d declareAll:#(a b c) from:#(10 20 30).
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1054
     d.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1055
    "
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1056
    "
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1057
     |d1 d2 d3|
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1058
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1059
     d1 := Dictionary new.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1060
     d1 declareAll:#(a b c) from:#(10 20 30).
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1061
     d2 := Dictionary new.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1062
     d2 declareAll:#( b c d) from:#(100 200 300).
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1063
     d3 := Dictionary new.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1064
     d3 declareAll:#(a b c) from:d1.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1065
     d3 declareAll:#(c d) from:d2.
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1066
     d3
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1067
    "
21349
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1068
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1069
    "Modified (comment): / 06-02-2017 / 12:52:26 / cg"
16451
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1070
!
59f63673573d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15857
diff changeset
  1071
9938
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1072
declareAllFrom:aDictionaryOrNil
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
  1073
    "merge all key-value pairs from aDictionary into the receiver.
21349
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1074
     Values present in the arg will always end up in the receiver;
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1075
     i.e. a value coming from the argument is already in the receiver,
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1076
     the value from aDictionaryOrNil is stored into the receiver.
8434
98ae6daa9aac Fix #addAll: and #declareAllFrom:
Stefan Vogel <sv@exept.de>
parents: 8395
diff changeset
  1077
9938
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1078
     sigh:
21349
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1079
        For compatibility with #declare:from: the behavior should be changed as following:
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1080
        If the receiver already contains a key, the existing value is retained.
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1081
        To keep the compatibility with other smalltalks, the semantics of this remains
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1082
        as is, and #declareAllNewFrom: was added for convenience.
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1083
        See #declareAllNewFrom: which does exactly what this name implies."
2711
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
  1084
23335
de5a17af729d #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23328
diff changeset
  1085
    (aDictionaryOrNil notNil and:[self ~~ aDictionaryOrNil]) ifTrue:[
de5a17af729d #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23328
diff changeset
  1086
        aDictionaryOrNil keysAndValuesDo:[:key :value |
de5a17af729d #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23328
diff changeset
  1087
            self at:key put:value.
de5a17af729d #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23328
diff changeset
  1088
        ].
2711
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
  1089
    ]
9938
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1090
9939
59877f64325d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9938
diff changeset
  1091
    "Modified: / 18-09-2006 / 22:01:12 / cg"
21349
ca1b1f8d848e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21268
diff changeset
  1092
    "Modified (comment): / 06-02-2017 / 12:51:51 / cg"
23335
de5a17af729d #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23328
diff changeset
  1093
    "Modified: / 14-09-2018 / 16:54:23 / Stefan Vogel"
9938
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1094
!
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1095
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1096
declareAllNewFrom:aDictionaryOrNil
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1097
    "merge all new key-value pairs from aDictionary into the receiver
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1098
     i.e. If the receiver already contains a key, the existing value is retained.
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1099
     See also #declareAllFrom:"
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1100
23337
68b35a6bdfe7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23335
diff changeset
  1101
    (aDictionaryOrNil notNil and:[self ~~ aDictionaryOrNil]) ifTrue:[
68b35a6bdfe7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23335
diff changeset
  1102
        aDictionaryOrNil keysAndValuesDo:[:key :value |
68b35a6bdfe7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23335
diff changeset
  1103
            (self includesKey:key) ifFalse:[
68b35a6bdfe7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23335
diff changeset
  1104
                self at:key put:value.
68b35a6bdfe7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23335
diff changeset
  1105
            ].
68b35a6bdfe7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23335
diff changeset
  1106
        ]
9938
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1107
    ]
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1108
bec2c2e2c500 declareAllFrom: comment
Claus Gittinger <cg@exept.de>
parents: 9570
diff changeset
  1109
    "Created: / 18-09-2006 / 21:58:54 / cg"
23337
68b35a6bdfe7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23335
diff changeset
  1110
    "Modified: / 14-09-2018 / 16:56:08 / Stefan Vogel"
2711
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
  1111
!
307c43b7a3f9 addPairsFrom:
ca
parents: 2466
diff changeset
  1112
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1113
remove:oldObject ifAbsent:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1114
    "remove oldObject from the collection and return it.
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1115
     If it was not in the collection return the value of aBlock.
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1116
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1117
     This is blocked here; you have to use one of
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1118
     #removeKey:, #saveRemoveKey:, #removeAssociation:,
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1119
     #removeValue: or #saveRemoveValue:"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1120
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1121
    ^ self shouldNotImplement
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1122
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1123
    "Modified: 1.3.1996 / 21:21:38 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1124
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1125
6053
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1126
removeAllKeys:aKeyCollection
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1127
    "remove all associations under each key in aKeyCollection from the collection.
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1128
     If it was not in the collection report an error.
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1129
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1130
     WARNING: do not remove elements while iterating over the receiver.
21116
3d401b0a90bd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 20989
diff changeset
  1131
              See #safeRemoveKey: to do this."
6053
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1132
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1133
    aKeyCollection do:[:eachKey |
21116
3d401b0a90bd #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 20989
diff changeset
  1134
        self removeKey:eachKey ifAbsent:[self errorKeyNotFound:eachKey]
6053
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1135
    ].
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1136
!
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1137
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1138
removeAllKeys:aKeyCollection ifAbsent:aBlock
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1139
    "remove all associations under each key in aKeyCollection from the collection.
15527
79c139096f4f class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15363
diff changeset
  1140
     If it was not in the collection return the result from evaluating aBlock
79c139096f4f class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15363
diff changeset
  1141
     (invoked for each missing element).
6053
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1142
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1143
     WARNING: do not remove elements while iterating over the receiver.
15527
79c139096f4f class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15363
diff changeset
  1144
              See #saveRemoveKey: to do this."
6053
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1145
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1146
    aKeyCollection do:[:eachKey |
15527
79c139096f4f class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 15363
diff changeset
  1147
        self removeKey:eachKey ifAbsent:aBlock
6053
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1148
    ].
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1149
!
a97f27828c08 added #removeKeys: and #removeKeys:ifAbsent: (ANSI)
Claus Gittinger <cg@exept.de>
parents: 5865
diff changeset
  1150
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1151
removeAssociation:assoc
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1152
    "remove the association from the collection.
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1153
     If it was not in the collection report an error.
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1154
     Only the key is used in the passed argument, and a new
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1155
     association, for the key and the previously stored value is returned.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1156
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1157
     WARNING: do not remove elements while iterating over the receiver.
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  1158
	      See #saveRemoveKey: to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1159
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1160
    |key|
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1161
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1162
    key := assoc key.
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2711
diff changeset
  1163
    ^ Association key:key value:(self removeKey:key)
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1164
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1165
    "Modified: 1.3.1996 / 21:21:11 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1166
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1167
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
  1168
removeIdentityValue:aValue ifAbsent:aBlock
20167
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1169
    "remove (first) the association to aValue from the collection,
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1170
     return the key under which it was stored previously.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1171
     If it was not in the collection return result from evaluating aBlock.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1172
     The value is searched using identity compare.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1173
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1174
     Notice, this does a linear search through the values and may
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1175
     therefore be slow for big dictionaries.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1176
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1177
     WARNING: do not remove elements while iterating over the receiver.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1178
             See #saveRemoveValue: to do this."
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1179
    
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1180
    |next   "{ Class:SmallInteger }"
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1181
     oldKey|
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1182
20228
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
  1183
    keyArray
54e93c9d0126 #DOCUMENTATION by mawalch
mawalch
parents: 20224
diff changeset
  1184
        keysAndValuesDo:[:index :aKey |
20167
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1185
            |idx "{Class:SmallInteger}"|
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1186
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1187
            (aKey notNil and:[ aKey ~~ DeletedEntry ]) ifTrue:[
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1188
                idx := index.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1189
                ((valueArray at:idx) == aValue) ifTrue:[
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1190
                    "found it"
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1191
                    valueArray basicAt:idx put:nil.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1192
                    oldKey := keyArray basicAt:idx.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1193
                    oldKey == NilEntry ifTrue:[
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1194
                        oldKey := nil
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1195
                    ].
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1196
                    keyArray basicAt:idx put:nil.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1197
                    tally := tally - 1.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1198
                    tally == 0 ifTrue:[
22952
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  1199
                        self possiblyShrinkToZero.
20167
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1200
                        ^ oldKey
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1201
                    ].
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1202
                    idx == keyArray basicSize ifTrue:[
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1203
                        next := 1
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1204
                    ] ifFalse:[
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1205
                        next := index + 1.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1206
                    ].
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1207
                    (keyArray basicAt:next) notNil ifTrue:[
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1208
                        keyArray basicAt:idx put:DeletedEntry
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1209
                    ].
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1210
                    self possiblyShrink.
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1211
                    ^ oldKey
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1212
                ]
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1213
            ]
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1214
        ].
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1215
    ^ aBlock value
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1216
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1217
    "Modified: 1.3.1996 / 21:22:11 / cg"
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1218
!
ad934e073d16 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20066
diff changeset
  1219
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1220
removeKey:aKey
24350
5e7ccf17def9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24196
diff changeset
  1221
    "remove the association under aKey from the collection,
5e7ccf17def9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24196
diff changeset
  1222
     return the value previously stored there.
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1223
     If it was not in the collection report an error.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1224
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1225
     WARNING: do not remove elements while iterating over the receiver.
24350
5e7ccf17def9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24196
diff changeset
  1226
              See #saveRemoveKey: to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1227
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1228
    ^ self removeKey:aKey ifAbsent:[self errorKeyNotFound:aKey]
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1229
24350
5e7ccf17def9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24196
diff changeset
  1230
    "Modified: / 01-03-1996 / 21:21:52 / cg"
5e7ccf17def9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24196
diff changeset
  1231
    "Modified (comment): / 24-06-2019 / 12:44:22 / Claus Gittinger"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1232
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1233
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1234
removeKey:aKey ifAbsent:aBlock
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1235
    "remove the association under aKey from the collection,
19845
ef17a74c2bd7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19813
diff changeset
  1236
     return the value previously stored there.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1237
     If it was not in the collection return the result
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1238
     from evaluating aBlock.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1239
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1240
     WARNING: do not remove elements while iterating over the receiver.
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1241
             See #saveRemoveKey: to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1242
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  1243
    |index "{ Class:SmallInteger }"
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1244
     "/ next  "{ Class:SmallInteger }"
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1245
     oldValue k|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1246
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1247
    (k := aKey) isNil ifTrue:[
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1248
"/ no longer invalid
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1249
"/        ^ self errorInvalidKey:aKey
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1250
        k := NilEntry
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1251
    ].
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1252
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1253
    "/   below, I could have written:
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1254
    "/      index := self find:aKey ifAbsent:[^ aBlock value]
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1255
    "/   but the code below is slighlty more efficient, since it avoids
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1256
    "/   a garbage block creation - thus speeding up the good case.
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1257
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1258
    index := self find:k ifAbsent:0.
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1259
    index == 0 ifTrue:[^ aBlock value].
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1260
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1261
    oldValue := valueArray basicAt:index.
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1262
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1263
    valueArray basicAt:index put:nil.
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1264
    keyArray basicAt:index put:DeletedEntry.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1265
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1266
    tally := tally - 1.
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1267
    tally == 0 ifTrue:[
22952
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  1268
        self possiblyShrinkToZero
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1269
    ] ifFalse:[
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1270
"/        index == keyArray basicSize ifTrue:[
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1271
"/            next := 1
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1272
"/        ] ifFalse:[
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1273
"/            next := index + 1.
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1274
"/        ].
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1275
"/        (keyArray basicAt:next) notNil ifTrue:[
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1276
"/            keyArray basicAt:index put:DeletedEntry
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1277
"/        ].
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1278
        self possiblyShrink
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1279
    ].
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1280
    ^ oldValue
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1281
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1282
    "Modified: 1.3.1996 / 21:21:01 / cg"
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1283
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1284
5184
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1285
removeValue:aValue
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1286
    "remove (first) the association to aValue from the collection,
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1287
     return the key under which it was stored previously.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1288
     If it was not in the collection, report an error.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1289
     The value is searched using equality compare here,
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1290
     but identity compare in the IdentityDictionary subclass.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1291
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1292
     Notice, this does a linear search through the values and may
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1293
     therefore be slow for big dictionaries.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1294
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1295
     WARNING: do not remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1296
	     See #saveRemoveValue: to do this."
5184
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1297
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1298
    ^ self removeValue:aValue ifAbsent:[self errorValueNotFound:aValue]
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1299
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1300
    "
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1301
     |d|
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1302
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1303
     d := Dictionary new.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1304
     d at:1 put:'one'.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1305
     d at:2 put:'two'.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1306
     d at:3 put:'three'.
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1307
     d removeValue:'two'.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1308
     d
5184
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1309
    "
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1310
!
cbf20f052178 added #removeValue: - for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1311
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1312
removeValue:aValue ifAbsent:aBlock
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1313
    "remove (first) the association to aValue from the collection,
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1314
     return the key under which it was stored previously.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1315
     If it was not in the collection return result from evaluating aBlock.
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1316
     The value is searched using equality compare here,
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1317
     but identity compare in the IdentityDictionary subclass.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1318
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1319
     Notice, this does a linear search through the values and may
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1320
     therefore be slow for big dictionaries.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1321
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1322
     WARNING: do not remove elements while iterating over the receiver.
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1323
             See #saveRemoveValue: to do this."
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1324
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1325
    |next  "{ Class:SmallInteger }"
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1326
     oldKey|
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1327
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  1328
    keyArray keysAndValuesDo:[:index :aKey |
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1329
        |idx "{Class:SmallInteger}"|
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1330
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1331
        (aKey notNil and:[aKey ~~ DeletedEntry]) ifTrue:[
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1332
            idx := index.
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1333
            (self compareSame:(valueArray at:idx) with:aValue) ifTrue:[
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1334
                "found it"
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1335
                valueArray basicAt:idx put:nil.
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1336
                oldKey := keyArray basicAt:idx.
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1337
                oldKey == NilEntry ifTrue:[
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1338
                    oldKey := nil
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1339
                ].
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1340
                keyArray basicAt:idx put:nil.
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1341
                tally := tally - 1.
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1342
                tally == 0 ifTrue:[
22952
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  1343
                    self possiblyShrinkToZero.
17264
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1344
                    ^ oldKey
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1345
                ].
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1346
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1347
                idx == keyArray basicSize ifTrue:[
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1348
                    next := 1
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1349
                ] ifFalse:[
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1350
                    next := index + 1.
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1351
                ].
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1352
                (keyArray basicAt:next) notNil ifTrue:[
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1353
                    keyArray basicAt:idx put:DeletedEntry
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1354
                ].
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1355
                self possiblyShrink.
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1356
                ^ oldKey
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1357
            ]
548ea4dc5aa4 renamed the private emptyCheck of Set & Dictionary
Claus Gittinger <cg@exept.de>
parents: 16902
diff changeset
  1358
        ]
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1359
    ].
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  1360
    ^ aBlock value
641
ef3bcf9de54b return values in remove*** methods fixed (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 633
diff changeset
  1361
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1362
    "Modified: 1.3.1996 / 21:22:11 / cg"
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1363
!
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1364
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1365
safeRemoveKey:aKey
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1366
    "remove the association under aKey from the collection.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1367
     Return the value previously stored there.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1368
     If it was not in the collection return nil.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1369
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1370
     In contrast to #removeKey:, this does not resize the underlying collection
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1371
     and therefore does NOT rehash & change the elements order.
18787
a1b603604641 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 18342
diff changeset
  1372
     Therefore this can be used while enumerating the receiver,
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1373
     which is not possible if #removeKey: is used.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1374
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1375
     WARNING: since no resizing is done, the physical amount of memory used
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1376
              by the container remains the same, although the logical size shrinks.
18787
a1b603604641 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 18342
diff changeset
  1377
              You may want to manually resize the receiver using #possiblyShrink."
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1378
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1379
    |index "{ Class:SmallInteger }"
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1380
     next  "{ Class:SmallInteger }"
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1381
     oldValue k|
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1382
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1383
    (k := aKey) isNil ifTrue:[
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1384
        k := NilEntry
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1385
    ].
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1386
"/    aKey isNil ifTrue:[^ nil].
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1387
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  1388
    index := self find:k ifAbsent:0.
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1389
    index == 0 ifTrue:[^ nil].
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1390
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1391
    oldValue := valueArray basicAt:index.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1392
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1393
    valueArray basicAt:index put:nil.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1394
    keyArray basicAt:index put:nil.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1395
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1396
    tally := tally - 1.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1397
    tally ~~ 0 ifTrue:[
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1398
        index == keyArray basicSize ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1399
            next := 1
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1400
        ] ifFalse:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1401
            next := index + 1.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1402
        ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1403
        (keyArray basicAt:next) notNil ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1404
            keyArray basicAt:index put:DeletedEntry
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1405
        ].
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1406
    ].
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1407
    ^ oldValue
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1408
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1409
    "does NOT work:
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1410
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1411
        |d|
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1412
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1413
        d := Dictionary new.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1414
        d at:'one' put:1.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1415
        d at:'two' put:2.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1416
        d at:'three' put:3.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1417
        d at:'four' put:4.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1418
        d at:'five' put:5.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1419
        d at:'six' put:6.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1420
        d at:'seven' put:7.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1421
        d at:'eight' put:8.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1422
        d at:'nine' put:9.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1423
        d keysAndValuesDo:[:k :v |
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1424
            v odd ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1425
                d removeKey:k
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1426
            ]
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1427
        ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1428
        d inspect
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1429
    "
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1430
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1431
    "DOES work:
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1432
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1433
        |d|
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1434
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1435
        d := Dictionary new.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1436
        d at:'one' put:1.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1437
        d at:'two' put:2.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1438
        d at:'three' put:3.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1439
        d at:'four' put:4.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1440
        d at:'five' put:5.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1441
        d at:'six' put:6.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1442
        d at:'seven' put:7.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1443
        d at:'eight' put:8.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1444
        d at:'nine' put:9.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1445
        d keysAndValuesDo:[:k :v |
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1446
            v odd ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1447
                d safeRemoveKey:k
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1448
            ]
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1449
        ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1450
        d inspect
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1451
    "
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1452
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1453
    "Created: 1.3.1996 / 21:14:42 / cg"
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1454
    "Modified: 1.3.1996 / 21:14:53 / cg"
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1455
!
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1456
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1457
safeRemoveValue:aValue
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1458
    "remove the (first) association to aValue from the collection,
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1459
     return the key under which it was stored previously.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1460
     If it was not in the collection return nil.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1461
     The value is searched using equality compare here,
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1462
     but identity compare in the IdentityDictionary subclass.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1463
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1464
     In contrast to #removeValue:, this does not resize the underlying collection
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1465
     and therefore does NOT rehash & change the elements order.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  1466
     Therefore, this can be used while enumerating the receiver,
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1467
     which is not possible if #removeValue: is used.
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1468
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1469
     WARNING: since no resizing is done, the physical amount of memory used
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1470
              by the container remains the same, although the logical size shrinks.
18787
a1b603604641 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 18342
diff changeset
  1471
              You may want to manually resize the receiver using #possiblyShrink."
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1472
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1473
    |next  "{ Class:SmallInteger }"
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1474
     oldKey|
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1475
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  1476
    keyArray keysAndValuesDo:[:index :aKey |
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1477
        |idx "{Class:SmallInteger}"|
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1478
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1479
        (aKey notNil and:[aKey ~~ DeletedEntry]) ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1480
            idx := index.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1481
            (self compareSame:(valueArray at:idx) with:aValue) ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1482
                "found it"
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1483
                valueArray basicAt:idx put:nil.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1484
                oldKey := keyArray basicAt:idx.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1485
                oldKey == NilEntry ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1486
                    oldKey := nil
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1487
                ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1488
                keyArray basicAt:idx put:nil.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1489
                tally := tally - 1.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1490
                tally ~~ 0 ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1491
                    idx == keyArray basicSize ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1492
                        next := 1
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1493
                    ] ifFalse:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1494
                        next := index + 1.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1495
                    ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1496
                    (keyArray basicAt:next) notNil ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1497
                        keyArray basicAt:idx put:DeletedEntry
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1498
                    ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1499
                ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1500
                ^ oldKey
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1501
            ]
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1502
        ]
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1503
    ].
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1504
    ^ aValue
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1505
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1506
    "does NOT work:
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1507
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1508
        |d|
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1509
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1510
        d := Dictionary new.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1511
        d at:'one' put:1.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1512
        d at:'two' put:2.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1513
        d at:'three' put:3.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1514
        d at:'four' put:4.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1515
        d at:'five' put:5.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1516
        d at:'six' put:6.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1517
        d at:'seven' put:7.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1518
        d at:'eight' put:8.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1519
        d at:'nine' put:9.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1520
        d keysAndValuesDo:[:k :v |
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1521
            v odd ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1522
                d removeValue:v ifAbsent:nil
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1523
            ]
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1524
        ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1525
        d inspect
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1526
    "
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1527
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1528
    "DOES work:
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1529
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1530
        |d|
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1531
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1532
        d := Dictionary new.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1533
        d at:'one' put:1.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1534
        d at:'two' put:2.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1535
        d at:'three' put:3.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1536
        d at:'four' put:4.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1537
        d at:'five' put:5.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1538
        d at:'six' put:6.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1539
        d at:'seven' put:7.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1540
        d at:'eight' put:8.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1541
        d at:'nine' put:9.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1542
        d keysAndValuesDo:[:k :v |
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1543
            v odd ifTrue:[
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1544
                d safeRemoveValue:v
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1545
            ]
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1546
        ].
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1547
        d inspect
1053
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1548
    "
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1549
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1550
    "Created: 1.3.1996 / 21:17:10 / cg"
ac1ea83233e6 added saveRemoveKey:/saveRemoveValue: & commentaries
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  1551
    "Modified: 1.3.1996 / 21:23:04 / cg"
16512
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1552
!
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1553
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1554
saveRemoveKey:aKey
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1555
    <resource: #obsolete>
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1556
    "bad spelling - kept for backward compatibility (2014-06-04)"
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1557
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1558
    ^ self safeRemoveKey:aKey.
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1559
!
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1560
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1561
saveRemoveValue:aValue
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1562
    <resource: #obsolete>
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1563
    "bad spelling - kept for backward compatibility (2014-06-04)"
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1564
326a51f05fb6 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 16451
diff changeset
  1565
    ^ self safeRemoveValue:aValue.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1566
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1567
5279
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1568
!Dictionary methodsFor:'comparing'!
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1569
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1570
= aCollection
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1571
    "return true, if the argument is a Dictionary containing the same
5279
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1572
     key-value pairs as I do"
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1573
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1574
    aCollection species == self species ifFalse:[^ false].
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1575
    aCollection size == self size ifFalse:[^ false].
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1576
    "/ all of of my key-value associations must be in the other collection ...
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1577
    self keysAndValuesDo:[:key :value |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1578
	((aCollection at:key ifAbsent:[^ false]) = value) ifFalse:[^ false]
5279
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1579
    ].
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1580
    ^ true
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1581
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1582
    "
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1583
     |d1 d2|
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1584
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1585
     d1 := Dictionary new.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1586
     d2 := Dictionary new.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1587
     d1 at:1 put:'one'.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1588
     d1 at:'one' put:1.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1589
     d1 at:2 put:#two.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1590
     d1 at:'two' put:2.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1591
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1592
     d2 at:1 put:'one'.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1593
     d2 at:'one' put:1.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1594
     d2 at:2 put:#two.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1595
     d2 at:'two' put:2.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1596
     d1 = d2
5279
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1597
    "
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1598
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1599
    "
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1600
     |d1 d2|
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1601
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1602
     d1 := Dictionary new.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1603
     d2 := Dictionary new.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1604
     d1 at:1 put:'uno'.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1605
     d1 at:'one' put:1.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1606
     d1 at:2 put:#two.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1607
     d1 at:'two' put:2.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1608
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1609
     d2 at:1 put:'one'.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1610
     d2 at:'one' put:1.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1611
     d2 at:2 put:#two.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1612
     d2 at:'two' put:2.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1613
     d1 = d2
5279
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1614
    "
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1615
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1616
    "
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1617
     |d1 d2|
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1618
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1619
     d1 := Dictionary new.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1620
     d2 := Dictionary new.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1621
     d1 at:10 put:'one'.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1622
     d1 at:'one' put:1.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1623
     d1 at:2 put:#two.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1624
     d1 at:'two' put:2.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1625
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1626
     d2 at:1 put:'one'.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1627
     d2 at:'one' put:1.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1628
     d2 at:2 put:#two.
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1629
     d2 at:'two' put:2.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1630
     d1 = d2
5279
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1631
    "
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1632
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1633
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1634
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1635
! !
7f611c000835 added #= EXPERIMENTAL
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  1636
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1637
!Dictionary methodsFor:'converting'!
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1638
7906
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7751
diff changeset
  1639
asDictionary
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7751
diff changeset
  1640
    ^ self
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7751
diff changeset
  1641
!
9956d7c3a7be +asDictionary
Claus Gittinger <cg@exept.de>
parents: 7751
diff changeset
  1642
24196
433391e4c10b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24182
diff changeset
  1643
asKeysAndValues
433391e4c10b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24182
diff changeset
  1644
    ^ self
433391e4c10b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24182
diff changeset
  1645
433391e4c10b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24182
diff changeset
  1646
    "Created: / 27-05-2019 / 18:22:10 / Claus Gittinger"
433391e4c10b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24182
diff changeset
  1647
!
433391e4c10b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24182
diff changeset
  1648
14997
19ac0ce7ab74 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 14971
diff changeset
  1649
asNewDictionary
21792
e9b4b6343621 #OTHER by mawalch
mawalch
parents: 21787
diff changeset
  1650
    "return myself as a unique new dictionary"
14997
19ac0ce7ab74 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 14971
diff changeset
  1651
19ac0ce7ab74 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 14971
diff changeset
  1652
    ^ self copy
21792
e9b4b6343621 #OTHER by mawalch
mawalch
parents: 21787
diff changeset
  1653
e9b4b6343621 #OTHER by mawalch
mawalch
parents: 21787
diff changeset
  1654
    "Modified (comment): / 12-06-2017 / 13:40:33 / mawalch"
14997
19ac0ce7ab74 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 14971
diff changeset
  1655
!
19ac0ce7ab74 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 14971
diff changeset
  1656
14271
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1657
associationsOrderedBy:aCollectionOfKeys
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1658
    "return an OrderedCollection of my key-value pairs, ordered by the given key list"
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1659
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1660
    self assert:(aCollectionOfKeys size == self size).
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1661
    ^ aCollectionOfKeys collect:[:eachKey | eachKey -> (self at:eachKey) ] as: OrderedCollection
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1662
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1663
    "
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1664
     |d|
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1665
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1666
     d := Dictionary new.
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1667
     d at:'zzz' put:3.
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1668
     d at:'aaa' put:1.
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1669
     d at:'eee' put:2.
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1670
     d.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1671
     d valuesOrderedBy:#('aaa' 'eee' 'zzz').
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1672
     d associationsOrderedBy:#('aaa' 'eee' 'zzz').
14271
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1673
    "
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1674
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1675
    "Created: / 31-07-2012 / 17:32:34 / cg"
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1676
!
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1677
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1678
fromLiteralArrayEncoding:encoding
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1679
    "read my values from an encoding.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1680
     The encoding is supposed to be of the form:
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1681
	(Dictionary key1 val1 ... keyN valN)"
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1682
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1683
    2 to:encoding size by:2 do:[:i |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1684
	|key val|
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1685
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1686
	key := encoding at:i.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1687
	val := encoding at:i+1.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1688
	self at:key put:val
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1689
    ].
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1690
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1691
    "
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1692
     Dictionary new fromLiteralArrayEncoding:#(Dictionary 'hello' 'world' 1 'foo')
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1693
    "
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1694
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1695
    "Created: / 30.1.1998 / 04:30:47 / cg"
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1696
!
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1697
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1698
literalArrayEncoding
21787
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1699
    |literalArray idx|
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1700
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1701
    literalArray := Array new:(self size * 2)+1.
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1702
    literalArray at:1 put:self class name.
9413
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1703
    idx := 2.
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1704
    self keysAndValuesDo:[:eachKey :eachValue |
21787
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1705
        literalArray
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1706
            at:idx   put:eachKey literalArrayEncoding;
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1707
            at:idx+1 put:eachValue literalArrayEncoding.
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1708
        idx := idx + 2.
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1709
    ].
21787
563d52afa679 #REFACTORING by mawalch
mawalch
parents: 21414
diff changeset
  1710
    ^ literalArray
9413
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1711
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1712
    "
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1713
      |dict|
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1714
9413
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1715
      dict := Dictionary new.
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1716
      dict at:1 put:'bla'.
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1717
      dict at:'fasel' put:#[1 2 3 4].
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1718
      dict literalArrayEncoding
195f7caf6610 Fix comments.
Stefan Vogel <sv@exept.de>
parents: 9183
diff changeset
  1719
    "
23364
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  1720
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  1721
    "Modified (comment): / 18-09-2018 / 14:30:44 / Stefan Vogel"
14271
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1722
!
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1723
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1724
valuesOrderedBy:aCollectionOfKeys
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1725
    "return an OrderedCollection of my values, ordered by the given key list"
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1726
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1727
    self assert:(aCollectionOfKeys size == self size).
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1728
    ^ aCollectionOfKeys collect:[:eachKey | self at:eachKey ] as: OrderedCollection
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1729
Claus Gittinger <cg@exept.de>
parents: 14226
diff changeset
  1730
    "Created: / 31-07-2012 / 17:33:12 / cg"
3252
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1731
! !
da066eafc2c5 added literalArrayEncoding support
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
  1732
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1733
!Dictionary methodsFor:'copying'!
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1734
11909
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1735
, anotherDictionaryOrAssociation
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1736
    "return a new dictionary containing a merged set of associations.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1737
     If anotherDictionaryOrAssociation includes any of the receiver's keys,
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1738
     the value from anotherDictionaryOrAssociation will be placed into the
11909
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1739
     returned result."
9066
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1740
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1741
    |newDictionary|
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1742
11909
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1743
    newDictionary := self copy.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1744
    newDictionary declareAllFrom:anotherDictionaryOrAssociation.
9066
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1745
    ^ newDictionary
11909
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1746
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1747
    "
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1748
     |d1 d2|
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1749
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1750
     d1 := Dictionary new.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1751
     d1 at:#a put:'aaa'.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1752
     d1 at:#b put:'bbb'.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1753
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1754
     d2 := Dictionary new.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1755
     d2 at:#b put:'bbbb'.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1756
     d2 at:#c put:'ccc'.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1757
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1758
     d1 , d2
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1759
    "
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1760
    "
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1761
     |d1 d2|
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1762
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1763
     d1 := Dictionary new.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1764
     d1 at:#a put:'aaa'.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1765
     d1 at:#b put:'bbb'.
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1766
     d2 := d1 , (#c -> 'ccc').
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1767
     d2
3bc1c7c5eb7b comment in ,
Claus Gittinger <cg@exept.de>
parents: 11673
diff changeset
  1768
    "
9066
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1769
!
fe9eed32da70 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8831
diff changeset
  1770
23842
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1771
copyWithout:anAssociation 
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1772
    "Return a copy of the dictionary that is 1 smaller than the receiver and 
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1773
     does not include the argument, anAssociation
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1774
     No error is reported, if elementToSkip is not in the collection."
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1775
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1776
    |newDict keyToIgnore valueToIgnore|
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1777
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1778
    "assume, that one element will be removed. If not,
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1779
     we might to have to grow the Dictionary."
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1780
    newDict := self species new:self size - 1.
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1781
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1782
    keyToIgnore := anAssociation key.
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1783
    valueToIgnore := anAssociation value.
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1784
    self keysAndValuesDo:[:k :v |
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1785
        (keyToIgnore = k and:[valueToIgnore = v]) ifFalse:[
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1786
            newDict at:k put:v
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1787
        ]
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1788
    ].
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1789
    ^ newDict.
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1790
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1791
    "
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1792
     |d d2|
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1793
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1794
     d := Dictionary new
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1795
            at:1 put:'1';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1796
            at:2 put:'2';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1797
            at:3 put:'3';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1798
            at:4 put:'4';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1799
            at:5 put:'5';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1800
            yourself.
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1801
     d2 := d copyWithout:(4->'4').
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1802
     d2   
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1803
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1804
     |d d2|
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1805
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1806
     d := OrderedDictionary new
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1807
            at:1 put:'1';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1808
            at:2 put:'2';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1809
            at:3 put:'3';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1810
            at:4 put:'4';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1811
            at:5 put:'5';
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1812
            yourself.
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1813
     d2 := d copyWithout:(4->'4').
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1814
     d2      
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1815
    "
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1816
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1817
    "Created: / 05-03-2019 / 12:41:54 / Stefan Vogel"
24182
d3293adb46a7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24082
diff changeset
  1818
! !
d3293adb46a7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24082
diff changeset
  1819
d3293adb46a7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24082
diff changeset
  1820
!Dictionary methodsFor:'copying-private'!
23842
15d3d668d963 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23697
diff changeset
  1821
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1822
postCopy
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1823
    "have to copy the valueArray too"
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1824
21383
11894c85c6cd #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21366
diff changeset
  1825
    <modifier: #super> "must be called if redefined"
11894c85c6cd #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21366
diff changeset
  1826
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1827
    super postCopy.
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1828
    valueArray := valueArray shallowCopy
21383
11894c85c6cd #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21366
diff changeset
  1829
11894c85c6cd #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21366
diff changeset
  1830
    "Modified: / 08-02-2017 / 00:16:57 / cg"
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1831
! !
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
  1832
217
a0400fdbc933 *** empty log message ***
claus
parents: 155
diff changeset
  1833
!Dictionary methodsFor:'enumerating'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1834
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1835
allKeysDo:aBlock
302
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
  1836
    "perform the block for all keys in the collection.
1f76060d58a4 *** empty log message ***
claus
parents: 293
diff changeset
  1837
     Obsolete: use keysDo: for ST-80 compatibility."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1838
5865
06a28f9ee22c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5816
diff changeset
  1839
    <resource:#obsolete>
06a28f9ee22c Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5816
diff changeset
  1840
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1841
    self obsoleteMethodWarning:'please use #keysDo:'.
20989
42266e2b5d40 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20972
diff changeset
  1842
    ^ self keysDo:aBlock
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1843
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1844
    "Modified: 20.4.1996 / 11:22:01 / cg"
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1845
!
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1846
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1847
associationsCollect:aBlock
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1848
    "for each key-value pair in the receiver, evaluate the argument, aBlock
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1849
     and return a collection with the results.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1850
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1851
     See also:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1852
	#keysAndValuesCollect: (which passes separate keys & values)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1853
	#collect:              (which only passes values)
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1854
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1855
     This is much like #keysAndValuesCollect:, but aBlock gets the
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1856
     key and value as a single association argument.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1857
     #keysAndValuesCollect: and is a bit faster therefore (no intermediate objects).
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1858
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1859
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1860
	      Iterate over a copy to do this."
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1861
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1862
    |newCollection|
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1863
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1864
    newCollection := OrderedCollection new.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1865
    self keysAndValuesDo:[:key :value |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1866
	newCollection add:(aBlock value:(Association key:key value:value))
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1867
    ].
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1868
    ^ newCollection
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1869
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1870
    "
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1871
     |ages|
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1872
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1873
     ages := Dictionary new.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1874
     ages at:'cg' put:37.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1875
     ages at:'ca' put:33.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1876
     ages at:'sv' put:36.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1877
     ages at:'tk' put:28.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1878
     ages associationsCollect:[:assoc |
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1879
		assoc key , '''s age is ' , assoc value printString]
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1880
    "
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1881
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1882
    "Modified: 20.4.1996 / 11:31:27 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1883
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1884
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1885
associationsDo:aBlock
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  1886
    "perform the block for all associations in the collection.
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  1887
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1888
     See also:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1889
	#do:              (which passes values to its block)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1890
	#keysDo:          (which passes only keys to its block)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1891
	#keysAndValuesDo: (which passes keys&values)
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1892
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1893
     This is much like #keysAndValuesDo:, but aBlock gets the
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1894
     key and value as a single association argument.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1895
     #keysAndValuesDo: and is a bit faster therefore (no intermediate objects).
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1896
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  1897
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1898
	      Iterate over a copy to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1899
38
454b1b94a48e *** empty log message ***
claus
parents: 12
diff changeset
  1900
    |key n "{ Class: SmallInteger }"|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1901
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1902
    tally == 0 ifTrue:[^ self].
38
454b1b94a48e *** empty log message ***
claus
parents: 12
diff changeset
  1903
    n := keyArray basicSize.
454b1b94a48e *** empty log message ***
claus
parents: 12
diff changeset
  1904
    1 to:n do:[:index |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1905
	key := keyArray basicAt:index.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1906
	(key notNil and:[key ~~ DeletedEntry]) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1907
	    key == NilEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1908
		key := nil
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1909
	    ].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1910
	    aBlock value:(Association key:key value:(valueArray basicAt:index))
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1911
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1912
    ]
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  1913
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1914
    "Modified: 20.4.1996 / 11:31:39 / cg"
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1915
!
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1916
13721
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1917
associationsDo:aBlock separatedBy:sepBlock
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1918
    "perform the block for all associations in the collection.
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1919
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1920
     See also:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1921
	#do:              (which passes values to its block)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1922
	#keysDo:          (which passes only keys to its block)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1923
	#keysAndValuesDo: (which passes keys&values)
13721
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1924
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1925
     This is much like #keysAndValuesDo:, but aBlock gets the
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1926
     key and value as a single association argument.
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1927
     #keysAndValuesDo: and is a bit faster therefore (no intermediate objects).
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1928
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1929
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1930
	      Iterate over a copy to do this."
13721
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1931
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1932
    |key n "{ Class: SmallInteger }"
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1933
     first|
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1934
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1935
    tally == 0 ifTrue:[^ self].
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1936
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1937
    first := true.
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1938
    n := keyArray basicSize.
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1939
    1 to:n do:[:index |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1940
	key := keyArray basicAt:index.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1941
	(key notNil and:[key ~~ DeletedEntry]) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1942
	    key == NilEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1943
		key := nil
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1944
	    ].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1945
	    first ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1946
		first := false.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1947
	    ] ifFalse:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1948
		sepBlock value
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1949
	    ].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1950
	    aBlock value:(Association key:key value:(valueArray basicAt:index))
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1951
	]
13721
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1952
    ]
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1953
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1954
    "Modified: / 20-04-1996 / 11:31:39 / cg"
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1955
    "Created: / 23-09-2011 / 14:07:43 / cg"
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1956
!
733cce16b968 added: #associationsDo:separatedBy:
Claus Gittinger <cg@exept.de>
parents: 13328
diff changeset
  1957
2425
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1958
associationsReverseDo:aBlock
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1959
    "perform the block for all associations in the collection.
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1960
     Since dictionary does not define any order of its elements,
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1961
     this is the same as #associationsDo: here.
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1962
     Provided for protocol compatibility with OrderedDictionary"
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1963
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1964
    ^ self associationsDo:aBlock
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1965
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1966
    "Created: 28.2.1997 / 16:08:52 / cg"
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1967
!
3c23ae3de6d6 added #associationsReverseDo: for OD compatibility
Claus Gittinger <cg@exept.de>
parents: 2328
diff changeset
  1968
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1969
associationsSelect:aBlock
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1970
    "return a new collection with all elements from the receiver, for which
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1971
     the argument aBlock evaluates to true.
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1972
     The block gets keys and values as an association argument.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1973
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1974
     See also: #keysAndValuesSelect: (which is slightly faster),
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1975
	       #select: (which only passes the value)
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1976
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1977
     This is much like #keysAndValuesSelect:, but aBlock gets the
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1978
     key and value as a single association argument.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1979
     #keysAndValuesSelect: and is a bit faster therefore (no intermediate objects).
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1980
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1981
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1982
	      Iterate over a copy to do this."
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1983
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1984
    |newCollection|
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1985
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1986
    newCollection := self species new.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1987
    self keysAndValuesDo:[:key :value |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1988
	(aBlock value:(Association key:key value:value)) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1989
	    newCollection at:key put:value
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  1990
	]
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1991
    ].
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1992
    ^ newCollection
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1993
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1994
    "
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1995
     |ages|
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1996
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1997
     ages := Dictionary new.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1998
     ages at:'cg' put:37.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  1999
     ages at:'ca' put:33.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2000
     ages at:'sv' put:36.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2001
     ages at:'tk' put:28.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2002
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2003
     ages associationsSelect:[:assoc |
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2004
		(assoc key startsWith:'c') or:[assoc value < 30]].
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2005
    "
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2006
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2007
    "Modified: 20.4.1996 / 11:31:15 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2008
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2009
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2010
do:aBlock
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2011
    "perform the block for all values in the collection.
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2012
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2013
     See also:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2014
	#associationsDo:   (which passes key-value associations)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2015
	#keysAndValuesDo:  (which passes keys & values separately)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2016
	#keysDo:           (which passes keys only)
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2017
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2018
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2019
	      Iterate over a copy to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2020
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2021
    |key n "{ Class: SmallInteger }"
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2022
     deletedEntry|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2023
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2024
    tally == 0 ifTrue:[^ self].
38
454b1b94a48e *** empty log message ***
claus
parents: 12
diff changeset
  2025
    n := keyArray basicSize.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2026
    deletedEntry := DeletedEntry.
38
454b1b94a48e *** empty log message ***
claus
parents: 12
diff changeset
  2027
    1 to:n do:[:index |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2028
	key := keyArray basicAt:index.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2029
	(key notNil and:[key ~~ deletedEntry]) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2030
	    aBlock value:(valueArray basicAt:index)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2031
	].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2032
    ]
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2033
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2034
    "Modified: 20.4.1996 / 11:32:11 / cg"
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2035
!
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2036
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2037
keysAndValuesDo:aTwoArgBlock
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2038
    "evaluate the argument, aBlock for every element in the collection,
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2039
     passing both key and element as arguments.
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2040
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2041
     See also:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2042
	#associationsDo:       (which passes keys->value pairs)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2043
	#do:                   (which only passes values)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2044
	#keysDo:               (which only passes keys)
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2045
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2046
     This is much like #associationsDo:, but aBlock gets the
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2047
     key and value as two separate arguments.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2048
     #associationsDo: is a bit slower.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2049
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2050
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2051
	      Iterate over a copy to do this."
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2052
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2053
    |key n "{ Class: SmallInteger }"
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2054
     deletedEntry|
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2055
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2056
    tally == 0 ifTrue:[^ self].
38
454b1b94a48e *** empty log message ***
claus
parents: 12
diff changeset
  2057
    n := keyArray basicSize.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2058
    deletedEntry := DeletedEntry.
38
454b1b94a48e *** empty log message ***
claus
parents: 12
diff changeset
  2059
    1 to:n do:[:index |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2060
	key := keyArray basicAt:index.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2061
	(key notNil and:[key ~~ deletedEntry]) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2062
	    key == NilEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2063
		key := nil
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2064
	    ].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2065
	    aTwoArgBlock value:key value:(valueArray basicAt:index)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2066
	].
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2067
    ]
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2068
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2069
    "Modified: 20.4.1996 / 11:33:42 / cg"
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2070
!
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2071
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2072
keysAndValuesSelect:aBlock
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2073
    "return a new collection with all elements from the receiver, for which
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2074
     the argument aBlock evaluates to true.
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2075
     The block gets keys and values as separate arguments.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2076
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2077
     See also:
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2078
	#associationsSelect:    (which passes key-value pairs),
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2079
	#keysSelect:            (which passes key values),
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2080
	#select:                (which only passes the value)
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2081
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2082
     This is much like #associationsSelect:, but aBlock gets the
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2083
     key and value as two separate arguments.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2084
     #associationsSelect: is a bit slower.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2085
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2086
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2087
	      Iterate over a copy to do this."
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2088
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2089
    |newCollection|
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2090
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2091
    newCollection := self species new.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2092
    self keysAndValuesDo:[:key :value |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2093
	(aBlock value:key value:value) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2094
	    newCollection at:key put:value
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2095
	]
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2096
    ].
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2097
    ^ newCollection
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2098
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2099
    "
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2100
     |ages|
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2101
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2102
     ages := Dictionary new.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2103
     ages at:'cg' put:37.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2104
     ages at:'ca' put:33.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2105
     ages at:'sv' put:36.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2106
     ages at:'tk' put:28.
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2107
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2108
     ages keysAndValuesSelect:[:name :age |
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2109
		(name startsWith:'c') or:[age < 30]].
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2110
    "
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2111
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2112
    "Modified: 20.4.1996 / 11:34:29 / cg"
3
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2113
!
24d81bf47225 *** empty log message ***
claus
parents: 2
diff changeset
  2114
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2115
keysDo:aBlock
13044
a22c040ba417 commented: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 12732
diff changeset
  2116
    "evaluate the argument, aBlock for every key in the collection.
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2117
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2118
     See also:
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2119
	#associationsDo:   (which passes key-value associations)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2120
	#keysAndValuesDo:  (which passes keys & values separately)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2121
	#do:               (which passes values only)
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2122
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2123
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2124
	      Iterate over a copy to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2125
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  2126
    |sz "{ Class: SmallInteger }"
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  2127
     key|
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2128
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  2129
    sz := keyArray size.
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  2130
    1 to:sz do:[:index |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2131
	key := keyArray at:index.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2132
	(key notNil and:[key ~~ DeletedEntry]) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2133
	    key == NilEntry ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2134
		key := nil
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2135
	    ].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2136
	    aBlock value:key
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2137
	]
5336
a285bb62a443 allow nil as key.
Claus Gittinger <cg@exept.de>
parents: 5279
diff changeset
  2138
    ]
13044
a22c040ba417 commented: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 12732
diff changeset
  2139
a22c040ba417 commented: #keysDo:
Claus Gittinger <cg@exept.de>
parents: 12732
diff changeset
  2140
    "Modified: / 24-08-2010 / 10:13:58 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2141
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2142
11430
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2143
keysSelect:aBlock
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2144
    "return a new collection with all elements from the receiver, for which
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2145
     the argument aBlock evaluates to true.
11430
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2146
     The block gets the individual keys as its single argument.
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2147
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2148
     See also:
23364
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2149
        #associationsSelect:            (which passes key->value associations),
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2150
        #keysAndValuesSelect:           (which passes key & value args)
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2151
        #select:                        (which passes values as arg),
11430
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2152
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2153
     WARNING: do not add/remove elements while iterating over the receiver.
23364
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2154
              Iterate over a copy to do this."
11430
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2155
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2156
    |newCollection|
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2157
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2158
    newCollection := self species new.
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2159
    self keysAndValuesDo:[:key :value |
23364
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2160
        (aBlock value:key) ifTrue:[
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2161
            newCollection at:key put:value
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2162
        ]
11430
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2163
    ].
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2164
    ^ newCollection
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2165
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2166
    "
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2167
     |d|
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2168
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2169
     d := Dictionary new.
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2170
     d at:#foo put:#bar.
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2171
     d at:#bar put:#baz.
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2172
     d at:#baz put:#foo.
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2173
23364
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2174
     d keysSelect:[:el | el startsWith:'b'].
11430
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2175
    "
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2176
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2177
    "Modified: / 12-10-2006 / 11:24:06 / cg"
23364
7c549ad49b78 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23343
diff changeset
  2178
    "Modified (comment): / 18-09-2018 / 15:24:46 / Stefan Vogel"
11430
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2179
!
7306d849ead8 +keysSelect
Claus Gittinger <cg@exept.de>
parents: 11420
diff changeset
  2180
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2181
select:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2182
    "return a new collection with all elements from the receiver, for which
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2183
     the argument aBlock evaluates to true.
10077
21e92bc1b64f comment
Claus Gittinger <cg@exept.de>
parents: 9939
diff changeset
  2184
     The block gets the individual values as its single argument.
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2185
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2186
     See also:
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2187
	#associationsSelect:            (which passes key->value associations),
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2188
	#keysAndValuesSelect:           (which passes key & value args)
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2189
	#keysSelect:                    (which passes key values),
1233
21452b1c61eb more enumaration variations & commentary
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
  2190
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2191
     WARNING: do not add/remove elements while iterating over the receiver.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2192
	      Iterate over a copy to do this."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2193
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2194
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2195
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2196
    newCollection := self species new.
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2197
    self keysAndValuesDo:[:key :value |
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2198
	(aBlock value:value) ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2199
	    newCollection at:key put:value
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2200
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2201
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2202
    ^ newCollection
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2203
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2204
    "
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2205
     |d|
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2206
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2207
     d := Dictionary new.
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2208
     d at:#foo put:#bar.
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2209
     d at:#bar put:#baz.
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2210
     d at:#baz put:#foo.
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2211
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2212
     d select:[:el | el startsWith:'b'].
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2213
    "
1056
991ed2a9318b commentary
Claus Gittinger <cg@exept.de>
parents: 1053
diff changeset
  2214
10077
21e92bc1b64f comment
Claus Gittinger <cg@exept.de>
parents: 9939
diff changeset
  2215
    "Modified: / 12-10-2006 / 11:24:06 / cg"
7653
0a81451a7a59 added #valuesDo: for compatibility
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
  2216
!
0a81451a7a59 added #valuesDo: for compatibility
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
  2217
0a81451a7a59 added #valuesDo: for compatibility
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
  2218
valuesDo:aBlock
0a81451a7a59 added #valuesDo: for compatibility
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
  2219
    "perform the block for all values in the collection.
0a81451a7a59 added #valuesDo: for compatibility
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
  2220
     Same as #do: - for VisualWorks compatibility"
0a81451a7a59 added #valuesDo: for compatibility
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
  2221
0a81451a7a59 added #valuesDo: for compatibility
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
  2222
    ^ self do:aBlock
21268
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2223
!
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2224
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2225
xor:aCollection
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2226
    "return a new set containing all elements,
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2227
     which are contained in either the receiver or aCollection, but not in both."
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2228
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2229
    |newCollection|
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2230
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2231
    newCollection := self species new.
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2232
    self keysAndValuesDo:[:key :value |
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2233
        (aCollection includes:value) ifFalse:[
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2234
            newCollection at:key put:value
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2235
        ]
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2236
    ].
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2237
    aCollection keysAndValuesDo:[:key :value |
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2238
        (self includes:value) ifFalse:[
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2239
            newCollection at:key put:value
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2240
        ]
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2241
    ].
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2242
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2243
    ^ newCollection
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2244
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2245
    "
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2246
     (Dictionary withKeysAndValues:#(1 'uno' 2 'due' 3 'tre' 4 'quatro'))
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2247
        xor:(Dictionary withKeysAndValues:#(1 'uno'  4 'quatro' 5 'cinque'))
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2248
    "
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2249
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2250
    "Created: / 20-01-2017 / 19:43:48 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2251
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2252
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2253
17671
8b8de728c259 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17264
diff changeset
  2254
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2255
!Dictionary methodsFor:'printing & storing'!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2256
3192
47bf17818a88 Use #printOn: from Collection.
Stefan Vogel <sv@exept.de>
parents: 2897
diff changeset
  2257
printElementsDo:aBlock
47bf17818a88 Use #printOn: from Collection.
Stefan Vogel <sv@exept.de>
parents: 2897
diff changeset
  2258
    "redefined, so #printOn: prints associations"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2259
3192
47bf17818a88 Use #printOn: from Collection.
Stefan Vogel <sv@exept.de>
parents: 2897
diff changeset
  2260
    ^ self associationsDo:aBlock
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2261
3192
47bf17818a88 Use #printOn: from Collection.
Stefan Vogel <sv@exept.de>
parents: 2897
diff changeset
  2262
    "Created: / 20.1.1998 / 14:11:02 / stefan"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2263
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2264
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2265
storeOn:aStream
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2266
    "output a printed representation (which can be re-read)
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2267
     onto the argument aStream"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2268
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2269
    |isEmpty|
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2270
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2271
    thisContext isRecursive ifTrue:[
15857
bf865a059191 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15800
diff changeset
  2272
        RecursiveStoreError raiseRequestWith:self.
bf865a059191 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15800
diff changeset
  2273
        ('Dictionary [error]: storeOn: of self referencing collection.') errorPrintCR.
bf865a059191 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15800
diff changeset
  2274
        aStream nextPutAll:'#recursive'.
bf865a059191 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15800
diff changeset
  2275
        ^ self
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2276
    ].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2277
22170
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2278
    "/ use a more compact storestring, if all keys and all values are literals
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2279
    (self keysAndValuesConform:[:key :value | key isLiteral and:[value isLiteral]]) ifTrue:[
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2280
        aStream nextPutAll:'('.
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2281
        aStream nextPutAll:(self class name).
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2282
        aStream nextPutAll:' withKeysAndValues:#('.
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2283
        self keysAndValuesDo:[:key :value |
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2284
            key storeOn:aStream.
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2285
            aStream space.
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2286
            value storeOn:aStream.
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2287
            aStream space.
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2288
        ].
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2289
        aStream nextPutAll:'))'.
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2290
        ^ self
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2291
    ].    
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2292
    
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2293
    aStream nextPutAll:'('.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2294
    aStream nextPutAll:(self class name).
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2295
    aStream nextPutAll:' new'.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2296
    isEmpty := true.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2297
    self keysAndValuesDo:[:key :value |
21414
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2298
        "/ will change this soon; makes the generated storeString shorter.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2299
        false "(key isLiteral and:[value isLiteral])" ifTrue:[
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2300
            aStream nextPutAll:' add:('.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2301
            key storeOn:aStream.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2302
            aStream nextPutAll:' -> '.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2303
            value storeOn:aStream.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2304
            aStream nextPutAll:')'.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2305
        ] ifFalse:[    
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2306
            aStream nextPutAll:' at:'.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2307
            key storeOn:aStream.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2308
            aStream nextPutAll:' put:'.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2309
            value storeOn:aStream.
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2310
        ].
83d6f106ccaf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21383
diff changeset
  2311
        aStream nextPutAll:';'.
15857
bf865a059191 class: Dictionary
Stefan Vogel <sv@exept.de>
parents: 15800
diff changeset
  2312
        isEmpty := false
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2313
    ].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2314
    isEmpty ifFalse:[aStream nextPutAll:' yourself'].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2315
    aStream nextPut:$)
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2316
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2317
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2318
     Dictionary new storeOn:Transcript
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2319
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2320
     (Dictionary new at:1 put:'hello'; yourself) storeOn:Transcript
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2321
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2322
     (Dictionary new at:1 put:'hello'; at:2 put:nil; yourself) storeOn:Transcript
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2323
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2324
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2325
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2326
     |d|
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2327
     d := Dictionary new.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2328
     d at:1 put:'hello'.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2329
     d at:'hello' put:#world.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2330
     d storeOn:Transcript
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2331
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2332
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2333
    "
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2334
     |d|
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2335
     d := Dictionary new.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2336
     d at:1 put:'hello'.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2337
     d at:'hello' put:#world.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2338
     d at:2 put:d.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2339
     d storeOn:Transcript
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2340
    "
1417
59e7d3c1df6d showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
  2341
22170
996a64e23916 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22014
diff changeset
  2342
    "Modified: / 08-08-2017 / 19:37:51 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2343
! !
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2344
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2345
!Dictionary methodsFor:'private'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2346
345
claus
parents: 302
diff changeset
  2347
compareSame:element1 with:element2
1256
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2348
    "compare two elements for being the same. Here, return true if the
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2349
     elements are equal (i.e. using #=).
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2350
     Redefinable in subclasses."
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2351
345
claus
parents: 302
diff changeset
  2352
    ^ element1 = element2
1256
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2353
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2354
    "Modified: 22.4.1996 / 17:34:27 / cg"
345
claus
parents: 302
diff changeset
  2355
!
claus
parents: 302
diff changeset
  2356
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2357
emptyCollectionForKeys
1256
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2358
    "return an empty collection to hold keys. Here, a Set is returned.
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2359
     Redefinable in subclasses."
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2360
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2361
    ^ Set new:(self size)
1256
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2362
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2363
    "Modified: 22.4.1996 / 17:35:17 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2364
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2365
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2366
grow:newSize
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2367
    "grow the receiver to make space for at least newSize elements.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2368
     To do this, we have to rehash into the new arrays.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2369
     (which is done by re-adding all elements to a new, empty key/value array pair)."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2370
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2371
    |key deletedEntry oldKeyArray oldValueArray n
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2372
     oldSize  "{ Class:SmallInteger }"
10
claus
parents: 5
diff changeset
  2373
     newIndex "{ Class:SmallInteger }" |
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2374
10
claus
parents: 5
diff changeset
  2375
    oldKeyArray := keyArray.
claus
parents: 5
diff changeset
  2376
    oldValueArray := valueArray.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2377
249
claus
parents: 217
diff changeset
  2378
    n := self class goodSizeFrom:newSize.
claus
parents: 217
diff changeset
  2379
    oldSize := oldKeyArray size.
claus
parents: 217
diff changeset
  2380
    n == oldSize ifTrue:[^ self].
claus
parents: 217
diff changeset
  2381
10
claus
parents: 5
diff changeset
  2382
    keyArray := self keyContainerOfSize:n.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2383
    valueArray := self valueContainerOfSize:n.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2384
249
claus
parents: 217
diff changeset
  2385
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2386
    deletedEntry := DeletedEntry.
10
claus
parents: 5
diff changeset
  2387
    1 to:oldSize do:[:index |
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2388
	key := oldKeyArray basicAt:index.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2389
	(key notNil and:[key ~~ deletedEntry]) ifTrue:[
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2390
	    newIndex := self findNil:key.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2391
	    keyArray basicAt:newIndex put:key.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2392
	    valueArray basicAt:newIndex put:(oldValueArray basicAt:index).
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2393
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2394
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2395
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2396
18332
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2397
initializeForCapacity:minSize
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2398
    "initialize the contents array (for at least minSize slots)
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2399
     and set tally to zero.
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2400
     The size is increased to the next prime for better hashing behavior."
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2401
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2402
    |n|
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2403
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2404
    n := self class goodSizeFrom:minSize.
18342
6d9664be691d class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 18332
diff changeset
  2405
    (keyArray notNil and:[n == keyArray size]) ifTrue:[
18332
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2406
        keyArray atAllPut:nil.
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2407
        valueArray atAllPut:nil.
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2408
    ] ifFalse:[
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2409
        keyArray := self keyContainerOfSize:n.
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2410
        valueArray := self valueContainerOfSize:n.
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2411
    ].
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2412
    tally := 0
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2413
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2414
    "Modified: / 5.8.1998 / 10:48:51 / cg"
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2415
!
68976cee1b99 class: Dictionary
Claus Gittinger <cg@exept.de>
parents: 17671
diff changeset
  2416
22952
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  2417
possiblyShrinkToZero
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  2418
    self initializeForCapacity:0.
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  2419
!
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  2420
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2421
rehash
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2422
    "rehash contents - is done by re-adding all elements to a new, empty key/value array pair)."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2423
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2424
    | oldKeyArray oldValueArray key
2
claus
parents: 1
diff changeset
  2425
      n        "{ Class:SmallInteger }"
claus
parents: 1
diff changeset
  2426
      newIndex "{ Class:SmallInteger }" |
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2427
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2428
    oldKeyArray := keyArray.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2429
    oldValueArray := valueArray.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2430
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2431
    n := keyArray size.
10
claus
parents: 5
diff changeset
  2432
    keyArray := self keyContainerOfSize:n.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2433
    valueArray := self valueContainerOfSize:n.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2434
2
claus
parents: 1
diff changeset
  2435
    1 to:n do:[:index |
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2436
	key := oldKeyArray basicAt:index.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2437
	(key notNil and:[key ~~ DeletedEntry]) ifTrue:[
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2438
	    newIndex := self findNil:key.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2439
	    keyArray basicAt:newIndex put:key.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2440
	    valueArray basicAt:newIndex put:(oldValueArray basicAt:index).
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2441
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2442
    ]
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2443
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2444
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2445
rehashFrom:startIndex
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2446
    "rehash elements starting at index - after a remove.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2447
     NOTE: this method is no longer needed;
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2448
	   the trick using DeletedEntry avoids the need to do this time
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2449
	   consuming operation, making remove pretty fast :-)
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2450
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2451
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2452
    |key i length
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2453
     index "{ Class:SmallInteger }" |
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2454
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2455
    length := keyArray basicSize.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2456
    index := startIndex.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2457
    key := keyArray basicAt:index.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2458
    [key notNil] whileTrue:[
12669
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2459
	key ~~ DeletedEntry ifTrue:[
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2460
	    i := self findNil:key.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2461
	    i == index ifTrue:[
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2462
		^ self
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2463
	    ].
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2464
	    keyArray basicAt:i put:key.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2465
	    valueArray basicAt:i put:(valueArray basicAt:index).
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2466
	    keyArray basicAt:index put:nil.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2467
	    valueArray basicAt:index put:nil.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2468
	].
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2469
	index == length ifTrue:[
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2470
	    index := 1
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2471
	] ifFalse:[
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2472
	    index := index + 1.
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2473
	].
2acc2409c3f4 changed: #declareAllNewFrom:
Claus Gittinger <cg@exept.de>
parents: 12668
diff changeset
  2474
	key := keyArray basicAt:index.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2475
    ]
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2476
!
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
  2477
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2478
valueContainerOfSize:n
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2479
    "return a container for values of size n.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2480
     Extracted to make life of weak subclasses easier ..."
44
b262907c93ea *** empty log message ***
claus
parents: 38
diff changeset
  2481
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2482
    ^ Array basicNew:n
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2483
! !
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2484
21268
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2485
!Dictionary methodsFor:'queries'!
a7000a97f464 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21116
diff changeset
  2486
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2487
includes:anObject
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2488
    "return true, if the argument, aValue is stored in the dictionary,
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2489
     i.e. if there is an associaten, with aValue as value.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2490
     This is a slow search, since there is no fast reverse mapping;
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2491
     the values have to be all scanned without any hashing.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2492
     You need a special collection (or two Dictionaries) to get this
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2493
     reverse mapping fast."
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2494
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2495
    ^ self includesEqualValue:anObject
1256
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2496
249fd57abee5 commentary
Claus Gittinger <cg@exept.de>
parents: 1233
diff changeset
  2497
    "Modified: 22.4.1996 / 17:20:11 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2498
!
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
  2499
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2500
includesAssociation:anAssociation
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2501
    "return true, if there is an association in the receiver with the
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2502
     same key and value as the argument, anAssociation.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2503
     NOTICE: in contrast to #includes:, this compares both key and value."
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2504
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2505
    |val|
44
b262907c93ea *** empty log message ***
claus
parents: 38
diff changeset
  2506
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2507
    val := self at:(anAssociation key) ifAbsent:[^ false].
3318
d8173a888c93 oops - compareSame was wrong (used with #includesAssociation:)
Claus Gittinger <cg@exept.de>
parents: 3304
diff changeset
  2508
    ^ self compareSame:val with:anAssociation value
d8173a888c93 oops - compareSame was wrong (used with #includesAssociation:)
Claus Gittinger <cg@exept.de>
parents: 3304
diff changeset
  2509
d8173a888c93 oops - compareSame was wrong (used with #includesAssociation:)
Claus Gittinger <cg@exept.de>
parents: 3304
diff changeset
  2510
    "Modified: / 5.3.1998 / 20:35:00 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2511
!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2512
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2513
includesEqualValue:aValue
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2514
    "return true, if the argument, aValue is stored in the dictionary,
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2515
     i.e. if there is an associaten, with aValue as value.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2516
     This is a slow search, since there is no fast reverse mapping;
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2517
     the values have to be all scanned without any hashing.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2518
     You need a special collection (or two Dictionaries) to get this
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2519
     reverse mapping fast."
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2520
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2521
    aValue isNil ifTrue:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2522
	"/ need a special case for that ...
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2523
	^ self includesIdenticalValue:aValue.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2524
    ].
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2525
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2526
    ^ valueArray includes:aValue
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2527
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2528
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2529
     |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2530
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2531
     d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2532
     d at:'1' put:'one'.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2533
     d includes:nil.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2534
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2535
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2536
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2537
     |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2538
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2539
     d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2540
     d at:'1' put:'one'.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2541
     d at:2 put:nil.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2542
     d includes:nil.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2543
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2544
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2545
!
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2546
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2547
includesIdenticalValue:aValue
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2548
    "return true, if the argument, aValue is stored in the dictionary,
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2549
     i.e. if there is an associaten, with aValue as value.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2550
     This is a slow search, since there is no fast reverse mapping;
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2551
     the values have to be all scanned without any hashing.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2552
     You need a special collection (or two Dictionaries) to get this
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2553
     reverse mapping fast."
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2554
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2555
    |idx|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2556
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2557
    aValue isNil ifTrue:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2558
	"/ need a special case for that ...
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2559
	idx := 0.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2560
	[true] whileTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2561
	    idx := valueArray identityIndexOf:nil startingAt:idx+1.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2562
	    idx == 0 ifTrue:[^ false].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2563
	    (keyArray at:idx) notNil ifTrue:[^ true].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2564
	]
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2565
    ].
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2566
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2567
    ^ valueArray includesIdentical:aValue
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2568
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2569
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2570
     |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2571
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2572
     d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2573
     d at:'1' put:'one'.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2574
     d includes:nil.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2575
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2576
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2577
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2578
     |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2579
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2580
     d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2581
     d at:'1' put:'one'.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2582
     d at:2 put:nil.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2583
     d includes:nil.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2584
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2585
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2586
!
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2587
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2588
includesKey:aKey
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2589
    "return true, if the argument, aKey is a key in the receiver"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2590
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2591
    ^ (self find:(aKey ? NilEntry) ifAbsent:0) ~~ 0
9570
008049e411b5 includesKey: returned a wrong answer for a nil key.
Claus Gittinger <cg@exept.de>
parents: 9413
diff changeset
  2592
008049e411b5 includesKey: returned a wrong answer for a nil key.
Claus Gittinger <cg@exept.de>
parents: 9413
diff changeset
  2593
    "Modified: / 17-08-2006 / 21:06:41 / cg"
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2594
!
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2595
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2596
includesValue:aValue
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2597
    "return true, if the argument, aValue is stored in the dictionary,
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2598
     i.e. if there is an associaten, with aValue as value.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2599
     This is a slow search, since there is no fast reverse mapping;
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2600
     the values have to be all scanned without any hashing.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2601
     You need a special collection (or two Dictionaries) to get this
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2602
     reverse mapping fast."
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2603
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2604
    ^ self includesEqualValue:aValue
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2605
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2606
!
293
31df3850e98c *** empty log message ***
claus
parents: 282
diff changeset
  2607
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2608
occurrencesOf:anObject
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2609
    "count & return how often anObject is stored in the dictionary.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2610
     This counts values - not keys. Uses #= (i.e. equality) compare."
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2611
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2612
    |idx count|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2613
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2614
    anObject isNil ifTrue:[
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2615
	"/ need a special case for that ...
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2616
	idx := 0.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2617
	count := 0.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2618
	[true] whileTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2619
	    idx := valueArray identityIndexOf:nil startingAt:idx+1.
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2620
	    idx == 0 ifTrue:[^ count].
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2621
	    (keyArray at:idx) notNil ifTrue:[
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2622
		count := count + 1
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2623
	    ]
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2624
	]
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2625
    ].
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2626
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2627
    ^ valueArray occurrencesOf:anObject
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2628
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2629
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2630
     |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2631
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2632
     d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2633
     d at:'1' put:'one'.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2634
     d occurrencesOf:nil.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2635
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2636
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2637
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2638
     |d|
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2639
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2640
     d := Dictionary new.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2641
     d at:'1' put:'one'.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2642
     d at:2 put:nil.
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2643
     d at:5 put:nil.
14318
aa571cad5e4b NilKey moved to Set
Stefan Vogel <sv@exept.de>
parents: 14271
diff changeset
  2644
     d occurrencesOf:nil.
5050
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2645
    "
ea292b958108 allow for nil to be stored as a value.
Claus Gittinger <cg@exept.de>
parents: 4871
diff changeset
  2646
23697
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2647
!
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2648
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2649
speciesForCollecting
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2650
     "like species, but used when doing collect operations.
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2651
      Redefined for collections which return a different classes object when doing collect."
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2652
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2653
    ^ Bag
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2654
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2655
    "Created: / 20-01-2017 / 17:46:16 / stefan"
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2656
! !
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2657
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2658
!Dictionary methodsFor:'searching'!
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2659
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2660
findFirst:aBlock ifNone:exceptionValue
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2661
    "find the index of the first element, for which evaluation of the argument, aBlock returns true;
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2662
     return its index or the value from exceptionValue if none detected.
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2663
     This is much like #detect:ifNone:, however, here an INDEX is returned,
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2664
     while #detect:ifNone: returns the element.
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2665
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2666
     Here we return the first key for which aBlock matches the value.
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2667
     Note that there is no order in a Dictionary, so any element is first."
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2668
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2669
    self keysAndValuesDo:[:eachKey :eachValue| (aBlock value:eachValue) ifTrue:[^ eachKey]].
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2670
    ^ exceptionValue value.
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2671
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2672
    "
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2673
        (Dictionary withKeys:#('a' 'b' 'c') andValues:#('bla' 'hello' 'hallo'))
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2674
            findFirst:[:v| v first = $h].
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2675
    "
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2676
!
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2677
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2678
findFirstKey:aBlock
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2679
    "find and return the first key, for which evaluation of the argument, aBlock
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2680
     returns true; return nil if none is detected."
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2681
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2682
    self keysDo:[:key |
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2683
	(aBlock value:key) ifTrue:[^ key].
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2684
    ].
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2685
    ^ nil
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2686
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2687
    "Created: 5.6.1996 / 11:55:50 / stefan"
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2688
    "Modified: 8.10.1996 / 22:01:59 / cg"
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2689
! !
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2690
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2691
!Dictionary methodsFor:'testing'!
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2692
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2693
isDictionary
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2694
    "return true, if the receiver is some kind of dictionary;
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2695
     true returned here - the method is redefined from Object."
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2696
8761c9790638 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 23504
diff changeset
  2697
    ^ true
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2698
! !
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
  2699
8395
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 7906
diff changeset
  2700
!Dictionary methodsFor:'visiting'!
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 7906
diff changeset
  2701
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 7906
diff changeset
  2702
acceptVisitor:aVisitor with:aParameter
16728
0182965b1985 comment/format only
Claus Gittinger <cg@exept.de>
parents: 16512
diff changeset
  2703
    "dispatch for visitor pattern; send #visitDictionary:with: to aVisitor"
8395
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 7906
diff changeset
  2704
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 7906
diff changeset
  2705
    ^ aVisitor visitDictionary:self with:aParameter
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 7906
diff changeset
  2706
! !
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 7906
diff changeset
  2707
22952
2cdd598ecccb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22214
diff changeset
  2708
2094
42cd02703bf4 handle recursive printString/displayString
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
  2709
!Dictionary class methodsFor:'documentation'!
633
46e996b3c18f version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
  2710
46e996b3c18f version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
  2711
version
18787
a1b603604641 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 18342
diff changeset
  2712
    ^ '$Header$'
12659
6884221caecf changed: #declareAllFrom:
Michael Beyl <mb@exept.de>
parents: 11909
diff changeset
  2713
!
6884221caecf changed: #declareAllFrom:
Michael Beyl <mb@exept.de>
parents: 11909
diff changeset
  2714
6884221caecf changed: #declareAllFrom:
Michael Beyl <mb@exept.de>
parents: 11909
diff changeset
  2715
version_CVS
18787
a1b603604641 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 18342
diff changeset
  2716
    ^ '$Header$'
633
46e996b3c18f version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
  2717
! !
14897
41e26dc8902b comment/format in: #add:
Claus Gittinger <cg@exept.de>
parents: 14320
diff changeset
  2718