MethodDictionary.st
author Stefan Vogel <sv@exept.de>
Sat, 07 Aug 2004 20:47:18 +0200
changeset 8467 f25892c63a56
parent 5557 f5f8d236027c
child 9444 c7134e0aa248
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
328
claus
parents:
diff changeset
     1
"
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
     2
 COPYRIGHT (c) 1995 by eXept Software AG
2110
3c531e1ab7c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2109
diff changeset
     3
              All Rights Reserved
328
claus
parents:
diff changeset
     4
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    10
 hereby transferred.
claus
parents:
diff changeset
    11
"
claus
parents:
diff changeset
    12
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
    13
"{ Package: 'stx:libbasic' }"
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
    14
2386
b499ac8389c1 Ooops, MthdDict must be a variableSubclass of Collection.
Stefan Vogel <sv@exept.de>
parents: 2380
diff changeset
    15
Collection variableSubclass:#MethodDictionary
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    16
	instanceVariableNames:''
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    17
	classVariableNames:''
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    18
	poolDictionaries:''
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    19
	category:'Kernel-Methods'
328
claus
parents:
diff changeset
    20
!
claus
parents:
diff changeset
    21
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
    22
!MethodDictionary class methodsFor:'documentation'!
328
claus
parents:
diff changeset
    23
claus
parents:
diff changeset
    24
copyright
claus
parents:
diff changeset
    25
"
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
    26
 COPYRIGHT (c) 1995 by eXept Software AG
2110
3c531e1ab7c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2109
diff changeset
    27
              All Rights Reserved
328
claus
parents:
diff changeset
    28
claus
parents:
diff changeset
    29
 This software is furnished under a license and may be used
claus
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
    33
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    34
 hereby transferred.
claus
parents:
diff changeset
    35
"
claus
parents:
diff changeset
    36
!
claus
parents:
diff changeset
    37
claus
parents:
diff changeset
    38
documentation
claus
parents:
diff changeset
    39
"
claus
parents:
diff changeset
    40
    Instances of MethodDictionary store selector/method associations
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    41
    in classes. Conceptionally, they behave like IdentityDictionaries, but are
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    42
    implemented using a single array (instead of Dictionary, which uses
328
claus
parents:
diff changeset
    43
    two arrays to store keys and values separately).
claus
parents:
diff changeset
    44
    Also, they do not use hashing, since due to caching in the VM, hashing
claus
parents:
diff changeset
    45
    does not make too much of a difference in speed, but complicates the 
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    46
    VM implementation.
1465
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    47
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    48
    [author:]
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    49
        Stefan Vogel
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    50
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    51
    [see also:]
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    52
        Dictionary
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    53
        IdentityDictionary
1465
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    54
        Behavior Class
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    55
        Method 
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    56
        Symbol
328
claus
parents:
diff changeset
    57
"
claus
parents:
diff changeset
    58
! !
claus
parents:
diff changeset
    59
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
    60
!MethodDictionary class methodsFor:'instance creation'!
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    61
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    62
new:sz 
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    63
    "create and return a new methodDictionary holding sz
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    64
     key->value associations"
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    65
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    66
    ^ self basicNew:(sz * 2)
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    67
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    68
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    69
withAll:aDictionary
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    70
    "create a MethodDictionary from another Dictionary"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    71
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
    72
    |newDict i "{ Class: SmallInteger }" |
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    73
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    74
    newDict := self new:aDictionary size.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    75
    i := 1.
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
    76
    aDictionary keysAndValuesDo:[:key :value |
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    77
        newDict basicAt:i   put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    78
        newDict basicAt:i+1 put:value.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    79
        i := i+2.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    80
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    81
    ^ newDict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    82
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    83
    "
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    84
        |d|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    85
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    86
        d := Dictionary withKeys:#(a b c d e) andValues:#(1 2 3 4 5).
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    87
        MethodDictionary withAll:d.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    88
    "
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    89
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    90
    "Created: 12.6.1996 / 13:46:43 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    91
    "Modified: 12.6.1996 / 13:56:36 / stefan"
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
    92
    "Modified: 3.7.1996 / 11:05:55 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    93
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    94
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    95
withKeys:keys andValues:values
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    96
    "create a MethodDictionary from a key (selector) array and value (method) array"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    97
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    98
    |inst 
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    99
     sz "{ Class: SmallInteger }"
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   100
     idx "{ Class: SmallInteger }" |
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   101
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   102
    sz := keys size.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   103
    inst := self new:sz.
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   104
    idx := 2.
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   105
    1 to:sz do:[:i |
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   106
        inst basicAt:(idx-1)  put:(keys   at:i).
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   107
        inst basicAt:(idx)    put:(values at:i).
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   108
	idx := idx + 2.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   109
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   110
    ^ inst
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   111
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   112
    "Created: 12.6.1996 / 13:46:43 / stefan"
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   113
    "Modified: 3.7.1996 / 11:05:34 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   114
! !
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   115
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   116
!MethodDictionary class methodsFor:'binary storage'!
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   117
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   118
binaryFullDefinitionFrom:stream manager:manager
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   119
   |size "{ Class: SmallInteger }" 
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   120
    inst|
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   121
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   122
   size := manager nextObject.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   123
   inst := self new:size.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   124
   1 to:size*2 by:2 do:[:i|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   125
        inst basicAt:i put:manager nextObject.          "/ get selector
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   126
        inst basicAt:(i + 1) put:(Method binaryFullDefinitionFrom:stream manager:manager).
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   127
   ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   128
   ^ inst
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   129
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   130
    "Created: 7.6.1996 / 13:37:22 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   131
    "Modified: 7.6.1996 / 13:52:08 / stefan"
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   132
    "Modified: 3.7.1996 / 11:06:34 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   133
! !
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   134
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   135
!MethodDictionary class methodsFor:'queries'!
328
claus
parents:
diff changeset
   136
claus
parents:
diff changeset
   137
isBuiltInClass
claus
parents:
diff changeset
   138
    "this class is known by the run-time-system"
claus
parents:
diff changeset
   139
claus
parents:
diff changeset
   140
    ^ self == MethodDictionary
claus
parents:
diff changeset
   141
! !
claus
parents:
diff changeset
   142
claus
parents:
diff changeset
   143
!MethodDictionary methodsFor:'accessing'!
claus
parents:
diff changeset
   144
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   145
associationAt:key 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   146
    "return an association consisting of aKey and the element indexed 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   147
     by aKey - 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   148
     report an error, if no element is stored under aKey."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   149
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   150
    ^ Association key:key value:(self at:key)
328
claus
parents:
diff changeset
   151
!
claus
parents:
diff changeset
   152
claus
parents:
diff changeset
   153
at:key 
claus
parents:
diff changeset
   154
    "return the value for a given key, which is supposed to be a symbol"
claus
parents:
diff changeset
   155
claus
parents:
diff changeset
   156
    |sz "{ Class: SmallInteger }"|
claus
parents:
diff changeset
   157
claus
parents:
diff changeset
   158
    sz := self basicSize.
claus
parents:
diff changeset
   159
    1 to:sz by:2 do:[:i |
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   160
        (self basicAt:i) == key ifTrue:[^ self basicAt:(i + 1)]
328
claus
parents:
diff changeset
   161
    ].
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   162
    ^ self errorKeyNotFound:key
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   163
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   164
    "Modified: 7.6.1996 / 15:53:28 / stefan"
328
claus
parents:
diff changeset
   165
!
claus
parents:
diff changeset
   166
claus
parents:
diff changeset
   167
at:key ifAbsent:exceptionBlock
claus
parents:
diff changeset
   168
    "return the element indexed by aKey - 
claus
parents:
diff changeset
   169
     return result of exceptionBlock if no element is stored under aKey"
claus
parents:
diff changeset
   170
claus
parents:
diff changeset
   171
    |sz "{ Class: SmallInteger }"|
claus
parents:
diff changeset
   172
claus
parents:
diff changeset
   173
    sz := self basicSize.
claus
parents:
diff changeset
   174
    1 to:sz by:2 do:[:i |
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   175
        (self basicAt:i) == key ifTrue:[^ self basicAt:(i + 1)]
328
claus
parents:
diff changeset
   176
    ].
claus
parents:
diff changeset
   177
    ^ exceptionBlock value
claus
parents:
diff changeset
   178
!
claus
parents:
diff changeset
   179
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   180
at:key put:value 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   181
    "set the value for a given key, which is supposed to be a symbol.
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   182
     In contrast to dictionaries, we allow adding elements only, if there is an
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   183
     empty slot (nil key) present."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   184
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   185
    |slot sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   186
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   187
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   188
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   189
        slot := self basicAt:i.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   190
        (slot == key) ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   191
            ^ self basicAt:(i + 1) put:value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   192
        ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   193
        slot isNil ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   194
            self basicAt:i put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   195
            ^ self basicAt:(i + 1) put:value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   196
        ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   197
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   198
    ^ self errorKeyNotFound:key
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   199
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   200
    "Modified: 7.6.1996 / 09:39:04 / stefan"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   201
    "Modified: 23.1.1997 / 13:59:29 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   202
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   203
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   204
at:key putOrAppend:value 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   205
    "set the value for a given key, which is supposed to be a symbol.
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   206
     In contrast to dictionaries, we allow adding elements only, if there is an
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   207
     empty slot (nil key) present.
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   208
     Otherwise a new MethodDictionary is created & returned"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   209
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   210
    |slot emptySlot newDict sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   211
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   212
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   213
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   214
        slot := self basicAt:i.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   215
        (slot == key) ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   216
            self basicAt:(i + 1) put:value .
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   217
            ^ self.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   218
        ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   219
        slot isNil ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   220
            emptySlot := i.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   221
        ]
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   222
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   223
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   224
    emptySlot notNil ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   225
        self basicAt:emptySlot       put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   226
        self basicAt:(emptySlot + 1) put:value.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   227
        ^ self.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   228
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   229
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   230
    "/ not enough room for new entry, copy to new dictionary
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   231
    newDict := self class new:sz//2+1.
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   232
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   233
"/ cannot do this ...
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   234
"/    newDict replaceFrom:1 to:sz with:self startingAt:1.
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   235
"/ must use basicAt
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   236
    1 to:sz do:[:i |
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   237
        newDict basicAt:i put:(self basicAt:i).
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   238
    ].
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   239
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   240
    newDict basicAt:(sz+1) put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   241
    newDict basicAt:(sz+2) put:value.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   242
    ^ newDict.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   243
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   244
    "Created: 7.6.1996 / 15:01:54 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   245
    "Modified: 7.6.1996 / 17:32:40 / stefan"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   246
    "Modified: 23.1.1997 / 14:00:03 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   247
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   248
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   249
keyAtValue:value ifAbsent:exceptionBlock
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   250
    "return the first key with value - 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   251
     return result of exceptionBlock if no key can be found"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   252
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   253
    |sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   254
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   255
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   256
    2 to:sz by:2 do:[:i |
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   257
        (self basicAt:i) == value ifTrue:[^ self basicAt:(i - 1)]
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   258
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   259
    ^ exceptionBlock value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   260
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   261
    "Created: 7.6.1996 / 14:53:57 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   262
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   263
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   264
removeKey:key 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   265
    "remove key from dictionary. 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   266
     We actually do not remove it, but set it to nil."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   267
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   268
    ^ self removeKey:key ifAbsent:[self errorKeyNotFound:key].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   269
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   270
    "Created: 7.6.1996 / 15:58:50 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   271
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   272
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   273
removeKey:key ifAbsent:failBlock
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   274
    "remove key from dictionary. 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   275
     We actually do not remove it, but set it to nil."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   276
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   277
    |value sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   278
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   279
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   280
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   281
        (self basicAt:i) == key ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   282
           value := self basicAt:(i + 1).
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   283
           self basicAt:i put:nil. self basicAt:(i+1) put:nil.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   284
           ^ value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   285
        ]
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   286
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   287
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   288
    ^ failBlock value.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   289
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   290
    "Created: 7.6.1996 / 15:57:56 / stefan"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   291
    "Modified: 23.1.1997 / 14:36:24 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   292
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   293
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   294
removeKeyAndCompress:key
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   295
    "remove key from dictionary. 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   296
     A new, compressed MethodDictionary will be returned,
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   297
     or nil, if key is not present."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   298
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   299
    |newDict dstIndex sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   300
2402
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   301
    sz := self basicSize.
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   302
    1 to:sz by:2 do:[:i |
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   303
        (self basicAt:i) == key ifTrue:[
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   304
            dstIndex := i
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   305
        ]
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   306
    ].
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   307
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   308
    dstIndex isNil ifTrue:[^ self].
1508
960d6e7e563b removeKeyAndCompress - failed if key was not present.
Claus Gittinger <cg@exept.de>
parents: 1485
diff changeset
   309
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   310
    sz := self basicSize.
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   311
    newDict := self class new:(sz//2-1).
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   312
    dstIndex := 1.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   313
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   314
        (self basicAt:i) ~~ key ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   315
           newDict basicAt:dstIndex   put:(self basicAt:i).
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   316
           newDict basicAt:dstIndex+1 put:(self basicAt:i+1).
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   317
           dstIndex := dstIndex + 2.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   318
        ]
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   319
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   320
    dstIndex > sz ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   321
        ^ nil
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   322
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   323
    ^ newDict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   324
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   325
    "Created: 7.6.1996 / 15:57:56 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   326
    "Modified: 7.6.1996 / 16:47:02 / stefan"
2402
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   327
    "Modified: 12.2.1997 / 19:47:23 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   328
! !
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   329
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   330
!MethodDictionary methodsFor:'binary storage'!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   331
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   332
storeFullBinaryDefinitionOn:stream manager:manager
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   333
    "store the complete description (i.e. including methods)"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   334
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   335
    self size storeBinaryOn:stream manager:manager.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   336
    self keysAndValuesDo:[:sel :mthd|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   337
        sel storeBinaryOn:stream manager:manager.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   338
        mthd makeRealMethod storeFullBinaryDefinitionOn:stream manager:manager.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   339
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   340
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   341
    "Created: 7.6.1996 / 12:53:00 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   342
! !
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   343
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   344
!MethodDictionary methodsFor:'enumerating'!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   345
1485
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   346
collect:aBlock
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   347
    "for each element in the receiver, evaluate the argument, aBlock
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   348
     and return a Bag with the results."
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   349
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   350
    |sz "{ Class: SmallInteger }"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   351
     newCollection key value|
1485
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   352
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   353
    newCollection := Bag new.
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   354
    sz := self basicSize.
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   355
    1 to:sz by:2 do:[:i |
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   356
        key := self basicAt:i. value := self basicAt:i+1.
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   357
        key notNil ifTrue:[
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   358
            newCollection add:(aBlock value:value)
1485
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   359
        ]
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   360
    ].
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   361
    ^ newCollection
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   362
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   363
    "Created: 24.6.1996 / 17:41:41 / cg"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   364
    "Modified: 23.1.1997 / 13:58:24 / cg"
1485
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   365
!
3e0f164f3f70 added #collect:
Claus Gittinger <cg@exept.de>
parents: 1465
diff changeset
   366
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   367
do:aBlock
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   368
    "evaluate the 1 arg block aBlock for each value (i.e. each Method)"
328
claus
parents:
diff changeset
   369
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   370
    |sz "{ Class: SmallInteger }"
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   371
     key value|
328
claus
parents:
diff changeset
   372
claus
parents:
diff changeset
   373
    sz := self basicSize.
claus
parents:
diff changeset
   374
    1 to:sz by:2 do:[:i |
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   375
        key := self basicAt:i. value := self basicAt:i+1.
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   376
        key notNil ifTrue:[
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   377
            aBlock value:value.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   378
        ]
328
claus
parents:
diff changeset
   379
    ].
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   380
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   381
    "Created: 7.6.1996 / 09:25:23 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   382
    "Modified: 7.6.1996 / 13:47:37 / stefan"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   383
    "Modified: 23.1.1997 / 13:57:49 / cg"
328
claus
parents:
diff changeset
   384
!
claus
parents:
diff changeset
   385
1703
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   386
findFirstKey:aBlock
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   387
    "find and return the first key, for which evaluation of the argument, aBlock
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   388
     returns true; return nil if none is detected."
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   389
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   390
    self keysDo:[:key |
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   391
        (aBlock value:key) ifTrue:[^ key].
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   392
    ].
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   393
    ^ nil
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   394
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   395
    "Created: 8.10.1996 / 22:01:31 / cg"
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   396
    "Modified: 8.10.1996 / 22:02:03 / cg"
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   397
!
9337c2c135d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1519
diff changeset
   398
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   399
keysAndValuesDo:aBlock
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   400
    "evaluate the 2 arg block aBlock for each key (i.e. each selector)
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   401
     and each value (i.e. each method)"
328
claus
parents:
diff changeset
   402
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   403
    |key value sz "{ Class: SmallInteger }"|
328
claus
parents:
diff changeset
   404
claus
parents:
diff changeset
   405
    sz := self basicSize.
claus
parents:
diff changeset
   406
    1 to:sz by:2 do:[:i |
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   407
        key := self basicAt:i. value := self basicAt:(i+1).
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   408
        (key notNil) ifTrue:[
3460
e67bf8ecda90 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2897
diff changeset
   409
            value notNil ifTrue:[
e67bf8ecda90 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2897
diff changeset
   410
                aBlock value:key value:value.
e67bf8ecda90 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2897
diff changeset
   411
            ]
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   412
        ]
328
claus
parents:
diff changeset
   413
    ].
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   414
3460
e67bf8ecda90 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2897
diff changeset
   415
    "Created: / 7.6.1996 / 09:27:42 / stefan"
e67bf8ecda90 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2897
diff changeset
   416
    "Modified: / 3.2.1998 / 00:48:47 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   417
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   418
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   419
keysDo:aBlock
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   420
    "evaluate the 1 arg block aBlock for each key (i.e. each selector)"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   421
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   422
    |key sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   423
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   424
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   425
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   426
        key := self basicAt:i.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   427
        (key notNil) ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   428
            aBlock value:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   429
        ]
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   430
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   431
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   432
    "Created: 7.6.1996 / 09:26:34 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   433
! !
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   434
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   435
!MethodDictionary methodsFor:'inspecting'!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   436
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   437
inspectorClass
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   438
    "redefined to use DictionaryInspector
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   439
     (instead of the default Inspector)."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   440
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   441
    ^ DictionaryInspectorView
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   442
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   443
    "Created: 12.6.1996 / 12:29:13 / stefan"
328
claus
parents:
diff changeset
   444
! !
claus
parents:
diff changeset
   445
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   446
!MethodDictionary methodsFor:'private'!
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   447
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   448
compressed
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
   449
    "compress - return either the myself or a new, compressed MethodDictionary"
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   450
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
   451
    |newDict tally key mySize
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
   452
     dstIndex "{ Class: SmallInteger }" 
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
   453
     sz       "{ Class: SmallInteger }" |
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   454
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   455
    sz := self basicSize.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   456
    mySize := sz // 2.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   457
    tally := 0.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   458
    1 to:sz by:2 do:[:i |
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   459
        (self basicAt:i) notNil ifTrue:[
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   460
            tally := tally + 1
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   461
        ]
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   462
    ].
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   463
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   464
    tally == mySize ifTrue:[^ self].
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   465
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
   466
    newDict := self species new:tally.
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   467
    dstIndex := 1.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   468
    1 to:sz by:2 do:[:i |
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   469
        key := self basicAt:i.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   470
        key notNil ifTrue:[
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   471
           newDict basicAt:dstIndex   put:key.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   472
           newDict basicAt:dstIndex+1 put:(self basicAt:i+1).
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   473
           dstIndex := dstIndex + 2.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   474
        ]
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   475
    ].
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   476
    ^ newDict
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   477
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
   478
    "Modified: / 05-08-2004 / 20:05:44 / stefan"
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   479
! !
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   480
328
claus
parents:
diff changeset
   481
!MethodDictionary methodsFor:'queries'!
claus
parents:
diff changeset
   482
2798
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   483
includesKey:key
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   484
    "return true, if there is an entry stored under key
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   485
     (i.e. there is a method for that selector)"
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   486
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   487
    |sz "{ Class: SmallInteger }"|
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   488
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   489
    sz := self basicSize.
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   490
    1 to:sz by:2 do:[:i |
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   491
        (self basicAt:i) == key ifTrue:[^ true].
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   492
    ].
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   493
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   494
    ^ false
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   495
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   496
    "Created: 30.7.1997 / 11:01:37 / cg"
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   497
!
b531f5b965d9 added #includesKey:
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
   498
328
claus
parents:
diff changeset
   499
keys
claus
parents:
diff changeset
   500
    "return a collection containing all keys of the receiver"
claus
parents:
diff changeset
   501
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   502
    |sz "{ Class: SmallInteger }"
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   503
     keys key|
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   504
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   505
    sz := self basicSize.
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   506
    keys := OrderedCollection new:(sz // 2).
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   507
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   508
    1 to:sz by:2 do:[:index | 
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   509
        key := self basicAt:index.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   510
        key notNil ifTrue:[
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   511
            keys add:key
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   512
        ]
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   513
    ].
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   514
    ^ keys
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   515
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   516
    "
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   517
     self methodDictionary keys 
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   518
    "
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   519
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   520
    "Modified: 23.1.1997 / 13:56:13 / cg"
328
claus
parents:
diff changeset
   521
!
claus
parents:
diff changeset
   522
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
   523
size
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
   524
    "return the number of elements (associations) in the receiver"
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
   525
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
   526
    ^ self basicSize // 2
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
   527
!
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
   528
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   529
values
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   530
    "return a collection containing all values of the receiver"
328
claus
parents:
diff changeset
   531
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   532
    |sz "{ Class: SmallInteger }"
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   533
     values key|
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   534
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   535
    sz := self basicSize.
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   536
    values := OrderedCollection new:(sz // 2).
328
claus
parents:
diff changeset
   537
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   538
    1 to:sz by:2 do:[:index | 
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   539
        key := self basicAt:index.
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   540
        key notNil ifTrue:[
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   541
            values add:(self basicAt:index+1)
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   542
        ]
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   543
    ].
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   544
    ^ values
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   545
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   546
    "
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   547
     self methodDictionary values
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   548
    "
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   549
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   550
    "Modified: 23.1.1997 / 13:55:17 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   551
! !
328
claus
parents:
diff changeset
   552
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   553
!MethodDictionary class methodsFor:'documentation'!
328
claus
parents:
diff changeset
   554
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   555
version
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
   556
    ^ '$Header: /cvs/stx/stx/libbasic/MethodDictionary.st,v 1.23 2004-08-07 18:47:18 stefan Exp $'
328
claus
parents:
diff changeset
   557
! !