gcdlcm(p1)
public
Returns an array with the greatest common divisor and the least common
multiple of the two integers, [gcd, lcm].
36.gcdlcm(60)
2.gcdlcm(2)
3.gcdlcm(-7)
((1<<31)-1).gcdlcm((1<<61)-1)
Show source
VALUE
rb_gcdlcm(VALUE self, VALUE other)
{
other = nurat_int_value(other);
return rb_assoc_new(f_gcd(self, other), f_lcm(self, other));
}