1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/// Computes the greatest common divisor of two unsigned integers.
///
/// This helper uses the Euclidean algorithm and keeps the required edge cases
/// explicit: `gcd(0, 0) == 0` and `gcd(a, 0) == a`.
///
/// # Examples
///
/// ```rust
/// use use_arithmetic::gcd;
///
/// assert_eq!(gcd(54, 24), 6);
/// assert_eq!(gcd(0, 0), 0);
/// assert_eq!(gcd(21, 0), 21);
/// ```
pub const