7 lines
137 B
Smalltalk
7 lines
137 B
Smalltalk
accessing
|
|
isInDB
|
|
|
|
(TwitterUser storedInstances select: [ :each | each id = self id ])
|
|
ifEmpty: [ ^ false ]
|
|
ifNotEmpty: [ ^ true ].
|
|
|