Re: [Pharo-users] string write stream

2015-08-08 Thread Mariano Martinez Peck
On Sat, Aug 8, 2015 at 7:42 AM, Peter Uhnák wrote: > What is better? > > String new writeStream > Prefer this one, as Stef said. > or > WriteStream on: String new > Use this one only if you want to specify which type of stream. > or > WriteStream on: '' > This is the worst. It won't work i

Re: [Pharo-users] string write stream

2015-08-08 Thread stepharo
Le 8/8/15 12:42, Peter Uhnák a écrit : What is better? String new writeStream I prefer this one because the class of the stream is not hardcoded in my code :) or WriteStream on: String new or WriteStream on: '' by popularity '' is the winner, however apparently not everyone is happy w

Re: [Pharo-users] string write stream

2015-08-08 Thread Ferlicot D. Cyril
Le 08/08/2015 12:42, Peter Uhnák a écrit : > What is better? > > String new writeStream > or > WriteStream on: String new > or > WriteStream on: '' > > by popularity '' is the winner, however apparently not everyone is happy > with that > https://pharo.fogbugz.com/f/cases/15260/WriteStream-on-ne

[Pharo-users] string write stream

2015-08-08 Thread Peter Uhnák
What is better? String new writeStream or WriteStream on: String new or WriteStream on: '' by popularity '' is the winner, however apparently not everyone is happy with that https://pharo.fogbugz.com/f/cases/15260/WriteStream-on-new-string ~~ f := Find