----- Original Message ----- From: "Minero Aoki" <aamine / mx.edit.ne.jp> To: "ruby-talk ML" <ruby-talk / ruby-lang.org> Sent: Tuesday, July 02, 2002 7:01 AM Subject: Re: (0..3) == (0...4) returning false? > In mail "Re: (0..3) == (0...4) returning false?" > Massimiliano Mirra <list / NOSPAMchromatic-harp.com> wrote: > > > > |Is there a reason for two ranges holding the same extension but > > > |initialized respectively with `..' and `...' to be considered > > > |different in a comparison? > > > > > > Although they have same range, they are still different. > > > > In what? > > (0..3) === 3.2 # false > (0...4) === 3.2 # true Ahhh. Very interesting. I would not have thought of that. Hal Fulton