Re: [Pharo-users] #collect:as:Dictionary

2015-10-24 Thread Peter Uhnák
What is the practical value of creating a dictionary from non-association objects? That seems to me like the programmer made a mistake and forgot something. But maybe you do it regularly, I can only speak for myself. However consider also this: #(a b c) collect: [ :each | each -> each first asci

Re: [Pharo-users] #collect:as:Dictionary

2015-10-24 Thread Nicolai Hess
2015-10-23 8:33 GMT+02:00 Marcus Denker : > > > On 23 Oct 2015, at 07:12, Peter Uhnák wrote: > > > > Hi, > > > > is this intentional behavior? > > > > #(a b c) collect: [ :each | each -> each first asciiValue ] as: > Dictionary. > > "a Dictionary(1->#a->97 2->#b->98 3->#c->99 )" > > > > (#(a b c)

Re: [Pharo-users] #collect:as:Dictionary

2015-10-22 Thread Marcus Denker
> On 23 Oct 2015, at 07:12, Peter Uhnák wrote: > > Hi, > > is this intentional behavior? > > #(a b c) collect: [ :each | each -> each first asciiValue ] as: Dictionary. > "a Dictionary(1->#a->97 2->#b->98 3->#c->99 )" > > (#(a b c) collect: [ :each | each -> each first asciiValue ]) asDiction

[Pharo-users] #collect:as:Dictionary

2015-10-22 Thread Peter Uhnák
Hi, is this intentional behavior? #(a b c) collect: [ :each | each -> each first asciiValue ] as: Dictionary. "a Dictionary(1->#a->97 2->#b->98 3->#c->99 )" (#(a b c) collect: [ :each | each -> each first asciiValue ]) asDictionary. "a Dictionary(#a->97 #b->98 #c->99 )" I would expect that coll