lcm
Computes the least common multiple of a and b. Arguments are the same as gcd .
Returns
The least common multiple of the given arguments.
fn
auto lcm(T)(T a, T b) if (!isIntegral!T &&
is(typeof(T.init % T.init)) &&
is(typeof(T.init == 0 || T.init > 0)))ditto