Aug. 30, 2011
2:25 p.m.
On 30 Aug 2011, at 16:16, Damien Cassou wrote:
On Tue, Aug 30, 2011 at 3:59 PM, Sven Van Caekenberghe <sven@beta9.be> wrote:
Maybe we need more good example of where this would make real sense ?
persons select: [:p | p isAdult] persons select: #isAdult
Yes, I am already writing that a lot.
persons inject: OrderedCollection new into: [:col :p | col copyWith: p] persons inject: OrderedCollection new into: #copyWith:
#(1 2 3) inject: 0 into: #+ OK, I am sold ;-) Sven