method
lcm
v1_8_7_330 -
Show latest stable
- Class:
Integer
lcm(other)public
No documentation available.
# File lib/complex.rb, line 431
def lcm(other)
if self.zero? or other.zero?
0
else
(self.div(self.gcd(other)) * other).abs
end
end