Module: GMP
- Defined in:
- ext/gmp.c
Defined Under Namespace
Class Method Summary collapse
Class Method Details
.F(*args) ⇒ Object
349 350 351 352 353 |
# File 'ext/gmp.c', line 349
static VALUE r_gmpmod_f(int argc, VALUE *argv, VALUE module)
{
(void)module;
return r_gmpfsg_new(argc, argv, cGMP_F);
}
|
.Q(*args) ⇒ Object
343 344 345 346 347 |
# File 'ext/gmp.c', line 343
static VALUE r_gmpmod_q(int argc, VALUE *argv, VALUE module)
{
(void)module;
return r_gmpqsg_new(argc, argv, cGMP_Q);
}
|
.Z(*args) ⇒ Object
337 338 339 340 341 |
# File 'ext/gmp.c', line 337
static VALUE r_gmpmod_z(int argc, VALUE *argv, VALUE module)
{
(void)module;
return r_gmpzsg_new(argc, argv, cGMP_Z);
}
|