|
Class: SharedSet (in Dolphin)
Object
|
+--Collection
|
+--Dolphin::SharedSet
|
+--Dolphin::SharedIdentitySet
- Package:
- stx:libcompat
- Category:
- Compatibility-Dolphin
- Version:
- rev:
1.5
date: 2013/06/25 11:24:01
- user: cg
- file: Dolphin__SharedSet.st directory: libcompat
- module: stx stc-classLibrary: libcompat
instance creation
-
new
-
adding & removing
-
add: anObject
-
-
remove: anElement ifAbsent: exceptionBlock
-
(comment from inherited method)
search for the first element, which is equal to anObject;
if found, remove and return it.
If not found, return the value of the exceptionBlock.
Uses equality compare (=) to search for the occurrence.
An error is raised here - it is to be implemented by a concrete subclass.
enumeration
-
do: aBlock
-
queries
-
includes: anObject
-
-
isFixedSize
-
return true if the receiver cannot grow
-
size
-
setup
-
initialize
-
(comment from inherited method)
just to ignore initialize to objects which do not need it
-
initializeSet
-
|