#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 17 Dec 2018 17:44:47 +0100
changeset 23566 48dd181b12f0
parent 23565 28bca8eff682
child 23567 07b2679e1347
#DOCUMENTATION by cg class: Collection comment/format in: #at:ifAbsent:
Collection.st
--- a/Collection.st	Fri Dec 14 19:46:07 2018 +0100
+++ b/Collection.st	Mon Dec 17 17:44:47 2018 +0100
@@ -16,11 +16,11 @@
 "{ NameSpace: Smalltalk }"
 
 Object subclass:#Collection
-        instanceVariableNames:''
-        classVariableNames:'EmptyCollectionSignal InvalidKeySignal NotEnoughElementsSignal
-                ValueNotFoundSignal'
-        poolDictionaries:''
-        category:'Collections-Abstract'
+	instanceVariableNames:''
+	classVariableNames:'EmptyCollectionSignal InvalidKeySignal NotEnoughElementsSignal
+		ValueNotFoundSignal'
+	poolDictionaries:''
+	category:'Collections-Abstract'
 !
 
 !Collection class methodsFor:'documentation'!
@@ -564,7 +564,12 @@
         self at:aKey
     ] on:KeyNotFoundError do:absentBlock.
 
+    "
+     #(1 2 3 4) at:5 ifAbsent:['bla']
+    "
+
     "Created: / 28-04-2017 / 14:25:58 / stefan"
+    "Modified (comment): / 17-12-2018 / 17:33:06 / Claus Gittinger"
 !
 
 at:aKey ifNilOrAbsentPut:valueBlock