WeakIdSet.st
author Claus Gittinger <cg@exept.de>
Tue, 28 Jan 1997 01:02:13 +0100
changeset 2292 e1c0e8ada72f
parent 2260 96d898c2874d
child 2303 f19df2d4c238
permissions -rw-r--r--
can wait forEver, if there is nothing to do
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
94
649321db4b9a Initial revision
claus
parents:
diff changeset
     1
"
649321db4b9a Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1994 by Claus Gittinger
187
a5dc8e2fa93f size 0 bug
claus
parents: 159
diff changeset
     3
	      All Rights Reserved
94
649321db4b9a Initial revision
claus
parents:
diff changeset
     4
649321db4b9a Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
649321db4b9a Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
649321db4b9a Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
649321db4b9a Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
649321db4b9a Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
649321db4b9a Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
649321db4b9a Initial revision
claus
parents:
diff changeset
    11
"
649321db4b9a Initial revision
claus
parents:
diff changeset
    12
649321db4b9a Initial revision
claus
parents:
diff changeset
    13
IdentitySet subclass:#WeakIdentitySet
1054
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
    14
	instanceVariableNames:''
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
    15
	classVariableNames:''
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
    16
	poolDictionaries:''
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
    17
	category:'Collections-Unordered'
94
649321db4b9a Initial revision
claus
parents:
diff changeset
    18
!
649321db4b9a Initial revision
claus
parents:
diff changeset
    19
649321db4b9a Initial revision
claus
parents:
diff changeset
    20
!WeakIdentitySet class methodsFor:'documentation'!
649321db4b9a Initial revision
claus
parents:
diff changeset
    21
649321db4b9a Initial revision
claus
parents:
diff changeset
    22
copyright
649321db4b9a Initial revision
claus
parents:
diff changeset
    23
"
649321db4b9a Initial revision
claus
parents:
diff changeset
    24
 COPYRIGHT (c) 1994 by Claus Gittinger
187
a5dc8e2fa93f size 0 bug
claus
parents: 159
diff changeset
    25
	      All Rights Reserved
94
649321db4b9a Initial revision
claus
parents:
diff changeset
    26
649321db4b9a Initial revision
claus
parents:
diff changeset
    27
 This software is furnished under a license and may be used
649321db4b9a Initial revision
claus
parents:
diff changeset
    28
 only in accordance with the terms of that license and with the
649321db4b9a Initial revision
claus
parents:
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
649321db4b9a Initial revision
claus
parents:
diff changeset
    30
 be provided or otherwise made available to, or used by, any
649321db4b9a Initial revision
claus
parents:
diff changeset
    31
 other person.  No title to or ownership of the software is
649321db4b9a Initial revision
claus
parents:
diff changeset
    32
 hereby transferred.
649321db4b9a Initial revision
claus
parents:
diff changeset
    33
"
649321db4b9a Initial revision
claus
parents:
diff changeset
    34
!
649321db4b9a Initial revision
claus
parents:
diff changeset
    35
649321db4b9a Initial revision
claus
parents:
diff changeset
    36
documentation
649321db4b9a Initial revision
claus
parents:
diff changeset
    37
"
1263
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    38
    WeakIdentitySets behave like IdentitySets, as long as the contained
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    39
    objects are still referenced by some other (non-weak) object.
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    40
    However, once the last non-weak reference ceases to exist,
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    41
    the object will be automatically removed from the Weakcollection
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    42
    (with some delay: it will be removed after the next garbage collect).
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    43
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    44
    This class was added to support dependencies which do not
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    45
    prevent objects from dying. (i.e. which do not fill up your memory
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    46
    if you forget to #release it).
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    47
2260
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
    48
    If you use this, be very careful since the collections size changes
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
    49
    'magically' - for example, testing for being nonEmpty and then
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
    50
    removing the first element may fail, since the element may vanish inbetween.
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
    51
    In general, never trust the value as returned by the size/isEmpty messages.
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
    52
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
    53
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
    54
    [author:]
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
    55
        Claus Gittinger
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
    56
1263
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    57
    [See also:]
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    58
        WeakArray WeakIdentityDictionary
94
649321db4b9a Initial revision
claus
parents:
diff changeset
    59
"
649321db4b9a Initial revision
claus
parents:
diff changeset
    60
! !
649321db4b9a Initial revision
claus
parents:
diff changeset
    61
111
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
    62
!WeakIdentitySet class methodsFor:'instance creation'!
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
    63
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
    64
new
1263
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    65
    "return a new empty WeakIdentitySet"
111
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
    66
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
    67
    ^ self new:1
1263
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    68
92c1db6b0776 commentary
Claus Gittinger <cg@exept.de>
parents: 1232
diff changeset
    69
    "Modified: 23.4.1996 / 13:56:08 / cg"
111
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
    70
! !
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
    71
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    72
!WeakIdentitySet class methodsFor:'queries'!
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    73
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    74
goodSizeFrom:arg
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    75
    "return a good array size for the given argument.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    76
     Since WeakIdentitySets are mostly used for dependency management, we typically
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    77
     have only one element in the set. Therefore use exact size for small sets
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    78
     (instead of rounding up to the prime 11)."
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    79
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    80
    arg <= 10 ifTrue:[
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    81
	arg < 1 ifTrue:[^ 1].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    82
	^ arg.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    83
    ].
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    84
    ^ super goodSizeFrom:arg
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    85
! !
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    86
359
claus
parents: 252
diff changeset
    87
!WeakIdentitySet methodsFor:'adding & removing'!
claus
parents: 252
diff changeset
    88
claus
parents: 252
diff changeset
    89
add:newElement 
claus
parents: 252
diff changeset
    90
    "redefined to avoid synchronization promlems, in case
claus
parents: 252
diff changeset
    91
     of interrupts 
claus
parents: 252
diff changeset
    92
     (otherwise, there could be some other operation on the receiver
claus
parents: 252
diff changeset
    93
       done by another process, which garbles my contents)"
claus
parents: 252
diff changeset
    94
claus
parents: 252
diff changeset
    95
    |wasBlocked|
claus
parents: 252
diff changeset
    96
claus
parents: 252
diff changeset
    97
    wasBlocked := OperatingSystem blockInterrupts.
1790
4187e9fc7357 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
    98
    [
4187e9fc7357 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
    99
        super add:newElement.
4187e9fc7357 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
   100
    ] valueNowOrOnUnwindDo:[
4187e9fc7357 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
   101
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts]
4187e9fc7357 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
   102
    ]
4187e9fc7357 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
   103
4187e9fc7357 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1780
diff changeset
   104
    "Modified: 20.10.1996 / 14:04:29 / cg"
359
claus
parents: 252
diff changeset
   105
!
claus
parents: 252
diff changeset
   106
claus
parents: 252
diff changeset
   107
remove:anObject ifAbsent:exceptionBlock
1054
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   108
    "redefined to avoid synchronization problems, in case
359
claus
parents: 252
diff changeset
   109
     of interrupts 
claus
parents: 252
diff changeset
   110
     (otherwise, there could be some other operation on the receiver
claus
parents: 252
diff changeset
   111
       done by another process, which garbles my contents)"
claus
parents: 252
diff changeset
   112
claus
parents: 252
diff changeset
   113
    |wasBlocked|
claus
parents: 252
diff changeset
   114
claus
parents: 252
diff changeset
   115
    wasBlocked := OperatingSystem blockInterrupts.
claus
parents: 252
diff changeset
   116
    [
1054
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   117
        super remove:anObject ifAbsent:exceptionBlock
359
claus
parents: 252
diff changeset
   118
    ] valueNowOrOnUnwindDo:[
1054
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   119
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts]
359
claus
parents: 252
diff changeset
   120
    ]
1054
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   121
62ce964f1d2e commentary
Claus Gittinger <cg@exept.de>
parents: 924
diff changeset
   122
    "Modified: 1.3.1996 / 21:16:10 / cg"
359
claus
parents: 252
diff changeset
   123
! !
claus
parents: 252
diff changeset
   124
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   125
!WeakIdentitySet methodsFor:'element disposal'!
94
649321db4b9a Initial revision
claus
parents:
diff changeset
   126
2091
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   127
update:something with:aParameter from:changedObject
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   128
    "an element died - must rehash"
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   129
1780
1b3a4ddc5b94 changed WeakArray to set emptied slots to zero
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
   130
    |wasBlocked|
111
9cdd0ed47f38 default size is smaller
claus
parents: 94
diff changeset
   131
2091
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   132
    something == #ElementExpired ifTrue:[
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   133
        "
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   134
         must block interrupts here - finalization
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   135
         may be done at low prio in the background
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   136
         finalizer, we do not want to be interrupted
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   137
         while rehashing
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   138
        "
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   139
        wasBlocked := OperatingSystem blockInterrupts.
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   140
        keyArray forAllDeadIndicesDo:[:idx | tally := tally - 1] replacingCorpsesWith:DeletedEntry.
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   141
        wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   142
    ].
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   143
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   144
    "Created: 7.1.1997 / 17:00:33 / stefan"
94
649321db4b9a Initial revision
claus
parents:
diff changeset
   145
! !
649321db4b9a Initial revision
claus
parents:
diff changeset
   146
216
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   147
!WeakIdentitySet methodsFor:'enumerating'!
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   148
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   149
do:aBlock
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   150
    "perform the block for all members in the collection.
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   151
     This method has been rewritten to be more robust about
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   152
     changed contents while enumerating elements (which might
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   153
     happen during change&update processing, if dependents
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   154
     are added or removed within the update."
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   155
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   156
    |index "{ Class: SmallInteger }"
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   157
     element|
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   158
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   159
    index := 1.
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   160
    [index <= keyArray size] whileTrue:[
2102
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   161
        element := keyArray at:index.
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   162
        element == 0 ifFalse:[
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   163
            (element notNil and:[element ~~ DeletedEntry]) ifTrue:[
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   164
                aBlock value:element
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   165
            ]
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   166
        ] ifTrue:[
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   167
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   168
"/ disabled, since we had to lock out interrupts here.
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   169
"/ The entry is cleared anyway, when the next finalization round
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   170
"/ is handled.
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   171
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   172
"/            keyArray at:index put:DeletedEntry.
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   173
"/            tally := tally - 1.
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   174
        ].
7a0e81ed345b dont clear entries while enumerating
Claus Gittinger <cg@exept.de>
parents: 2091
diff changeset
   175
        index := index + 1
216
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   176
    ]
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   177
! !
a8abff749575 *** empty log message ***
claus
parents: 187
diff changeset
   178
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   179
!WeakIdentitySet methodsFor:'private'!
94
649321db4b9a Initial revision
claus
parents:
diff changeset
   180
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   181
keyContainerOfSize:n
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   182
    "return a container for keys and values of size n.
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   183
     use WeakArrays here."
359
claus
parents: 252
diff changeset
   184
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   185
    |w|
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   186
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   187
    w := WeakArray new:n.
2091
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   188
    w addDependent:self.
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   189
    ^ w
2091
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   190
c11bb3e29a1b Use dependent mechamism of WeakArray instead of #watcher.
Stefan Vogel <sv@exept.de>
parents: 2026
diff changeset
   191
    "Modified: 7.1.1997 / 17:01:28 / stefan"
94
649321db4b9a Initial revision
claus
parents:
diff changeset
   192
! !
609
12be97f6d5a7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   193
636
295267cdb5d5 version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   194
!WeakIdentitySet class methodsFor:'documentation'!
295267cdb5d5 version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   195
295267cdb5d5 version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   196
version
2260
Claus Gittinger <cg@exept.de>
parents: 2102
diff changeset
   197
    ^ '$Header: /cvs/stx/stx/libbasic/Attic/WeakIdSet.st,v 1.23 1997-01-24 20:54:09 cg Exp $'
636
295267cdb5d5 version at the end
Claus Gittinger <cg@exept.de>
parents: 609
diff changeset
   198
! !