|
Class: SharedLookupTable (in Dolphin)
Object
|
+--Dolphin::SharedLookupTable
- Package:
- stx:libcompat
- Category:
- Compatibility-Dolphin
- Version:
- rev:
1.4
date: 2021/01/20 13:07:48
- user: cg
- file: Dolphin__SharedLookupTable.st directory: libcompat
- module: stx stc-classLibrary: libcompat
instance creation
-
new
-
(comment from inherited method)
return an instance of myself without indexed variables
accessing
-
at: key
-
(comment from inherited method)
return the indexed instance variable with index, anInteger;
this method can be redefined in subclasses.
-
at: key ifAbsent: aBlock
-
(comment from inherited method)
return the indexed instance variable with index, anInteger.
If there is no such key, return the value from exceptionalValue.
This method is usually be redefined in subclasses.
-
at: key put: value
-
(comment from inherited method)
store the 2nd arg, anObject as indexed instvar with index, anInteger.
this method can be redefined in subclasses. Returns anObject (sigh)
-
keysAndValuesDo: aBlock
-
-
removeKey: key ifAbsent: aBlock
-
-
values
-
setup
-
initialize
-
(comment from inherited method)
just to ignore initialize to objects which do not need it
|