mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5e22f873ed
Saves comitters' daily life by avoid #include-ing everything from internal.h to make each file do so instead. This would significantly speed up incremental builds. We take the following inclusion order in this changeset: 1. "ruby/config.h", where _GNU_SOURCE is defined (must be the very first thing among everything). 2. RUBY_EXTCONF_H if any. 3. Standard C headers, sorted alphabetically. 4. Other system headers, maybe guarded by #ifdef 5. Everything else, sorted alphabetically. Exceptions are those win32-related headers, which tend not be self- containing (headers have inclusion order dependencies).
36 lines
739 B
C
36 lines
739 B
C
#include "internal/numeric.h"
|
|
|
|
static VALUE
|
|
int_bignum_p(VALUE self)
|
|
{
|
|
return RB_TYPE_P(self, T_BIGNUM) ? Qtrue : Qfalse;
|
|
}
|
|
|
|
static VALUE
|
|
int_fixnum_p(VALUE self)
|
|
{
|
|
return FIXNUM_P(self) ? Qtrue : Qfalse;
|
|
}
|
|
|
|
static VALUE
|
|
rb_int_to_bignum(VALUE x)
|
|
{
|
|
if (FIXNUM_P(x))
|
|
x = rb_int2big(FIX2LONG(x));
|
|
return x;
|
|
}
|
|
|
|
static VALUE
|
|
positive_pow(VALUE x, VALUE y)
|
|
{
|
|
return rb_int_positive_pow(NUM2LONG(x), NUM2ULONG(y));
|
|
}
|
|
|
|
void
|
|
Init_core_ext(VALUE klass)
|
|
{
|
|
rb_define_method(rb_cInteger, "bignum?", int_bignum_p, 0);
|
|
rb_define_method(rb_cInteger, "fixnum?", int_fixnum_p, 0);
|
|
rb_define_method(rb_cInteger, "to_bignum", rb_int_to_bignum, 0);
|
|
rb_define_method(rb_cInteger, "positive_pow", positive_pow, 1);
|
|
}
|