# HG changeset patch # User Claus Gittinger # Date 1553597656 -3600 # Node ID 7758f1dfa263a27142bb166c8ef388f5f7378042 # Parent c614c916260f19326d8a8a0b3a373dc68556403c #OTHER by cg comment in atAllPut: diff -r c614c916260f -r 7758f1dfa263 OrderedDictionary.st --- a/OrderedDictionary.st Tue Mar 26 11:54:13 2019 +0100 +++ b/OrderedDictionary.st Tue Mar 26 11:54:16 2019 +0100 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " COPYRIGHT. This is a Manchester Goodie protected by copyright. @@ -250,10 +252,13 @@ indexCollection do:[:index | self at:(order at: index) put:anObject] ! -atAllPut: anObject - "Put anObject into the value field of every association in the dictionary" +atAllPut:anObject + "Put anObject into the value field of every association in the dictionary. + Return the receiver." order do:[:key | super at: key put:anObject] + + "Modified (comment): / 26-03-2019 / 11:53:17 / Claus Gittinger" ! atIndex:index