From: Ben Bleything Date: 2006-09-05T03:51:39+09:00 Subject: Re: times is a method? On Tue, Sep 05, 2006, Dick Davies wrote: > I think you understood him right, and you're correct according to ri, > so why does > > Integer.methods.include? 'times' > > return false ? Because it's an instance method, and you're asking for class methods. >> Integer.instance_methods.include? 'times' => true Ben