Std.Math.gcd
1 declaration
fn
gcd: T -> T -> T where T: Ord + Zero + One + Add + Sub + RemThis is a callable function.
What it does
The greatest common divisor, by Euclid's algorithm.
The result is never negative, so it can be used as a divisor without a
caller having to check its sign.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
