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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#[cfg(feature = "serde")]
use serde::{Serialize,Deserialize};
use compact_str::CompactString;
use crate::macros::*;
use crate::constants::*;
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[derive(Debug, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
pub struct Int(i64, CompactString);
impl_traits!(Int, i64);
impl Int {
#[inline]
pub fn new() -> Self {
Self(0, CompactString::new("0"))
}
#[inline]
pub fn unknown() -> Self {
Self(0, CompactString::new(UNKNOWN))
}
#[inline]
pub fn as_str(&self) -> &str {
self.1.as_str()
}
#[inline]
pub fn i64(&self) -> i64 {
self.0
}
#[inline]
#[cfg(target_pointer_width = "64")]
pub fn isize(&self) -> isize {
self.0 as isize
}
#[inline]
pub fn into_string(self) -> String {
self.1.into_string()
}
#[inline]
pub fn into_raw(self) -> (i64, String) {
(self.0, self.1.into_string())
}
}
macro_rules! impl_int {
($int:ty) => {
impl From<$int> for Int {
#[inline]
fn from(integer: $int) -> Self {
let i = integer as i64;
Self(i, buf!(i))
}
}
};
}
impl_int!(u8);
impl_int!(u16);
impl_int!(u32);
impl_int!(i8);
impl_int!(i16);
impl_int!(i32);
impl From<i64> for Int {
#[inline]
fn from(integer: i64) -> Self {
Self(integer, buf!(integer))
}
}
impl From<f32> for Int {
#[inline]
fn from(integer: f32) -> Self {
#[cfg(not(feature = "ignore_nan_inf"))]
{
let fpcat = integer.classify();
use std::num::FpCategory;
match fpcat {
FpCategory::Normal => (),
FpCategory::Nan => return Self(integer as i64, CompactString::new(NAN)),
FpCategory::Infinite => return Self(integer as i64, CompactString::new(INFINITY)),
_ => (),
}
}
let i = integer as i64;
Self(i, buf!(i))
}
}
impl From<f64> for Int {
#[inline]
fn from(integer: f64) -> Self {
#[cfg(not(feature = "ignore_nan_inf"))]
{
let fpcat = integer.classify();
use std::num::FpCategory;
match fpcat {
FpCategory::Normal => (),
FpCategory::Nan => return Self(integer as i64, CompactString::new(NAN)),
FpCategory::Infinite => return Self(integer as i64, CompactString::new(INFINITY)),
_ => (),
}
}
let i = integer as i64;
Self(i, buf!(i))
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn unsigned() {
assert!(Int::from(1_000_i64) == "1,000");
assert!(Int::from(65_535_i64) == "65,535");
assert!(Int::from(65_536_i64) == "65,536");
assert!(Int::from(100_000_i64) == "100,000");
assert!(Int::from(1_000_000_i64) == "1,000,000");
assert!(Int::from(10_000_000_i64) == "10,000,000");
assert!(Int::from(100_000_000_i64) == "100,000,000");
assert!(Int::from(1_000_000_000_i64) == "1,000,000,000");
assert!(Int::from(4_294_967_295_i64) == "4,294,967,295");
assert!(Int::from(4_294_967_296_i64) == "4,294,967,296");
assert!(Int::from(10_000_000_000_i64) == "10,000,000,000");
assert!(Int::from(100_000_000_000_i64) == "100,000,000,000");
assert!(Int::from(1_000_000_000_000_i64) == "1,000,000,000,000");
assert!(Int::from(10_000_000_000_000_i64) == "10,000,000,000,000");
assert!(Int::from(100_000_000_000_000_i64) == "100,000,000,000,000");
assert!(Int::from(1_000_000_000_000_000_i64) == "1,000,000,000,000,000");
assert!(Int::from(10_000_000_000_000_000_i64) == "10,000,000,000,000,000");
}
#[test]
fn int() {
assert!(Int::from(-1_000_i64) == "-1,000");
assert!(Int::from(-65_535_i64) == "-65,535");
assert!(Int::from(-65_536_i64) == "-65,536");
assert!(Int::from(-100_000_i64) == "-100,000");
assert!(Int::from(-1_000_000_i64) == "-1,000,000");
assert!(Int::from(-10_000_000_i64) == "-10,000,000");
assert!(Int::from(-100_000_000_i64) == "-100,000,000");
assert!(Int::from(-1_000_000_000_i64) == "-1,000,000,000");
assert!(Int::from(-4_294_967_295_i64) == "-4,294,967,295");
assert!(Int::from(-4_294_967_296_i64) == "-4,294,967,296");
assert!(Int::from(-10_000_000_000_i64) == "-10,000,000,000");
assert!(Int::from(-100_000_000_000_i64) == "-100,000,000,000");
assert!(Int::from(-1_000_000_000_000_i64) == "-1,000,000,000,000");
assert!(Int::from(-10_000_000_000_000_i64) == "-10,000,000,000,000");
assert!(Int::from(-100_000_000_000_000_i64) == "-100,000,000,000,000");
assert!(Int::from(-1_000_000_000_000_000_i64) == "-1,000,000,000,000,000");
assert!(Int::from(-10_000_000_000_000_000_i64) == "-10,000,000,000,000,000");
assert!(Int::from(i64::MIN) == "-9,223,372,036,854,775,808");
assert!(Int::from(i64::MAX) == "9,223,372,036,854,775,807");
}
#[test]
fn float() {
assert!(Int::from(-1_000.0) == "-1,000");
assert!(Int::from(-65_535.0) == "-65,535");
assert!(Int::from(-65_536.0) == "-65,536");
assert!(Int::from(-100_000.0) == "-100,000");
assert!(Int::from(-1_000_000.0) == "-1,000,000");
assert!(Int::from(-10_000_000.0) == "-10,000,000");
assert!(Int::from(-100_000_000.0) == "-100,000,000");
assert!(Int::from(-1_000_000_000.0) == "-1,000,000,000");
assert!(Int::from(-4_294_967_295.0) == "-4,294,967,295");
assert!(Int::from(-4_294_967_296.0) == "-4,294,967,296");
assert!(Int::from(-10_000_000_000.0) == "-10,000,000,000");
assert!(Int::from(-100_000_000_000.0) == "-100,000,000,000");
assert!(Int::from(-1_000_000_000_000.0) == "-1,000,000,000,000");
assert!(Int::from(-10_000_000_000_000.0) == "-10,000,000,000,000");
assert!(Int::from(-100_000_000_000_000.0) == "-100,000,000,000,000");
assert!(Int::from(-1_000_000_000_000_000.0) == "-1,000,000,000,000,000");
assert!(Int::from(i64::MIN as f64) == "-9,223,372,036,854,775,808");
assert!(Int::from(i64::MAX as f64) == "9,223,372,036,854,775,807");
}
#[test]
fn special() {
assert!(Int::from(f64::NAN) == crate::NAN);
assert!(Int::from(f64::INFINITY) == crate::INFINITY);
assert!(Int::from(f64::NEG_INFINITY) == crate::INFINITY);
}
}