From: daz Date: 2005-11-18T02:07:28+09:00 Subject: Re: Object#to_b Joel VanderWerf wrote: > > .. or Object#not_to_b, that is the question. > > I'm already sorry I said that ;) > With good reason ;) class Object; def to_b; !!self; end; end alias that? to_b that? #-> true daz