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
use crate::scalar::macros::*;
use crate::*;
use std::convert::TryFrom;
use std::ops::{Add, Div, Mul, Neg, Not, Sub};
use std::ops::{AddAssign, DivAssign, MulAssign, SubAssign};
pub struct Rint(pub i32);
impl Rint {
gen_impl!(Rint, i32);
}
gen_trait_impl!(Rint, i32, |x: &Rint| x.0 == i32::MIN, i32::MIN);
gen_from_primitive!(Rint, i32);
gen_from_scalar!(Rint, i32);
gen_sum_iter!(Rint);
gen_binop!(
Rint,
i32,
Add,
|lhs: i32, rhs| lhs.checked_add(rhs),
"Add two Rint values or an option of i32, overflows to NA."
);
gen_binop!(
Rint,
i32,
Sub,
|lhs: i32, rhs| lhs.checked_sub(rhs),
"Subtract two Rint values or an option of i32, overflows to NA."
);
gen_binop!(
Rint,
i32,
Mul,
|lhs: i32, rhs| lhs.checked_mul(rhs),
"Multiply two Rint values or an option of i32, overflows to NA."
);
gen_binop!(
Rint,
i32,
Div,
|lhs: i32, rhs| lhs.checked_div(rhs),
"Divide two Rint values or an option of i32, overflows to NA."
);
gen_binopassign!(
Rint,
i32,
AddAssign,
|lhs: i32, rhs| lhs.checked_add(rhs),
"Add two Rint values or an option of i32, modifying the left-hand side in place. Overflows to NA."
);
gen_binopassign!(
Rint,
i32,
SubAssign,
|lhs: i32, rhs| lhs.checked_sub(rhs),
"Subtract two Rint values or an option of i32, modifying the left-hand side in place. Overflows to NA."
);
gen_binopassign!(
Rint,
i32,
MulAssign,
|lhs: i32, rhs| lhs.checked_mul(rhs),
"Multiply two Rint values or an option of i32, modifying the left-hand side in place. Overflows to NA."
);
gen_binopassign!(
Rint,
i32,
DivAssign,
|lhs: i32, rhs| lhs.checked_div(rhs),
"Divide two Rint values or an option of i32, modifying the left-hand side in place. Overflows to NA."
);
gen_unop!(
Rint,
Neg,
|lhs: i32| Some(-lhs),
"Negate a Rint value, overflows to NA."
);
gen_unop!(
Rint,
Not,
|lhs: i32| Some(!lhs),
"Logical not a Rint value, overflows to NA."
);
impl TryFrom<&Robj> for Rint {
type Error = Error;
fn try_from(robj: &Robj) -> Result<Self> {
match robj.len() {
0 => return Err(Error::ExpectedNonZeroLength(robj.clone())),
1 => {}
_ => return Err(Error::ExpectedScalar(robj.clone())),
};
if robj.is_na() {
return Ok(Rint::na());
}
if let Some(v) = robj.as_integer() {
if let Ok(v) = Self::try_from(v) {
return Ok(v);
} else {
return Err(Error::OutOfLimits(robj.clone()));
}
}
if let Some(v) = robj.as_real() {
let result = v as i32;
if (result as f64 - v).abs() < f64::EPSILON {
return Ok(Rint::from(result));
} else {
return Err(Error::ExpectedWholeNumber(robj.clone()));
}
}
Err(Error::ExpectedNumeric(robj.clone()))
}
}
impl std::fmt::Debug for Rint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if self.is_na() {
write!(f, "NA_INTEGER")
} else {
self.inner().fmt(f)
}
}
}