public Method

Integer.integer?

int.integer?  true

Always returns true.

Source Code

/*
*  call-seq:
*     int.integer? -> true
*  
*  Always returns <code>true</code>.
*/

static VALUE
int_int_p(num)
   VALUE num;
{
   return Qtrue;
}
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.