= private = protected
integer?()
Always returns true.
/* * call-seq: * int.integer? -> true * * Always returns <code>true</code>. */ static VALUE int_int_p(num) VALUE num; { return Qtrue; }