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
use super::UInt;
use crate::{Limb, Wrapping};
use core::ops::{BitOr, BitOrAssign};
use subtle::{Choice, CtOption};
impl<const LIMBS: usize> UInt<LIMBS> {
#[inline(always)]
pub const fn bitor(&self, rhs: &Self) -> Self {
let mut limbs = [Limb::ZERO; LIMBS];
let mut i = 0;
while i < LIMBS {
limbs[i] = self.limbs[i].bitor(rhs.limbs[i]);
i += 1;
}
Self { limbs }
}
pub const fn wrapping_or(&self, rhs: &Self) -> Self {
self.bitor(rhs)
}
pub fn checked_or(&self, rhs: &Self) -> CtOption<Self> {
let result = self.bitor(rhs);
CtOption::new(result, Choice::from(1))
}
}
impl<const LIMBS: usize> BitOr for Wrapping<UInt<LIMBS>> {
type Output = Self;
fn bitor(self, rhs: Self) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.bitor(&rhs.0))
}
}
impl<const LIMBS: usize> BitOr<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>> {
type Output = Wrapping<UInt<LIMBS>>;
fn bitor(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.bitor(&rhs.0))
}
}
impl<const LIMBS: usize> BitOr<Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>> {
type Output = Wrapping<UInt<LIMBS>>;
fn bitor(self, rhs: Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.bitor(&rhs.0))
}
}
impl<const LIMBS: usize> BitOr<&Wrapping<UInt<LIMBS>>> for &Wrapping<UInt<LIMBS>> {
type Output = Wrapping<UInt<LIMBS>>;
fn bitor(self, rhs: &Wrapping<UInt<LIMBS>>) -> Wrapping<UInt<LIMBS>> {
Wrapping(self.0.bitor(&rhs.0))
}
}
impl<const LIMBS: usize> BitOrAssign for Wrapping<UInt<LIMBS>> {
fn bitor_assign(&mut self, other: Self) {
*self = *self | other;
}
}
impl<const LIMBS: usize> BitOrAssign<&Wrapping<UInt<LIMBS>>> for Wrapping<UInt<LIMBS>> {
fn bitor_assign(&mut self, other: &Self) {
*self = *self | other;
}
}
#[cfg(test)]
mod tests {
use crate::U128;
#[test]
fn checked_or_ok() {
let result = U128::ZERO.checked_or(&U128::ONE);
assert_eq!(result.unwrap(), U128::ONE);
}
#[test]
fn overlapping_or_ok() {
let result = U128::MAX.wrapping_or(&U128::ONE);
assert_eq!(result, U128::MAX);
}
}