Don't know what's best...
S.
On 22 Dec 2007, at 18:47, Julian Rohrhuber wrote:
So many times I've come across the choice to either use a
true/false pair (i.e. I have to check if nil separately) or use the
formula if(x != true) ... (i.e. have no true inversion: (x ==
false) means something else than (x != true).not.
my suggestion: asBoolean
Object:asBoolean { ^true } // or false?
Nil:asBoolean { ^false }
Boolean:asBoolean { ^this }
then we write:
if(x.asBoolean) { ... }
--
.
_______________________________________________
Sc-devel mailing list
Sc-devel@xxxxxxxxxxxxxxx
http://www.create.ucsb.edu/mailman/listinfo/sc-devel
_______________________________________________
Sc-devel mailing list
Sc-devel@xxxxxxxxxxxxxxx
http://www.create.ucsb.edu/mailman/listinfo/sc-devel