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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#[macro_export]
macro_rules! unit {
	($unit_name:tt, $one:expr) => {
		pub struct $unit_name;
		impl Unit for $unit_name {
			fn one(&self) -> &'static str {
				$one
			}

			fn many(&self) -> &'static str {
				$one
			}

			fn format(
				&self,
				f: &mut std::fmt::Formatter<'_>,
				value: u64,
				allow_zero: bool,
				started: &mut bool,
			) -> std::fmt::Result {
				if value != 0 || (allow_zero && !*started) {
					if *started {
						f.write_str(" ")?;
					}
					write!(f, "{}{}", value, $one)?;
					*started = true;
				}
				Ok(())
			}
		}
	};
	($unit_name:tt, $one:expr, $many:expr) => {
		pub struct $unit_name;
		impl Unit for $unit_name {
			fn one(&self) -> &'static str {
				$one
			}

			fn many(&self) -> &'static str {
				$many
			}

			fn format(
				&self,
				f: &mut std::fmt::Formatter<'_>,
				value: u64,
				allow_zero: bool,
				started: &mut bool,
			) -> std::fmt::Result {
				if value != 0 || (allow_zero && !*started) {
					if *started {
						f.write_str(" ")?;
					}
					if value > 1 || value == 0 {
						write!(f, "{}{}", value, $many)?;
					} else {
						write!(f, "{}{}", value, $one)?;
					}
					*started = true;
				}
				Ok(())
			}
		}
	};
}