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
// Copyright 2023, 2024 PARK Youngho.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
// This file may not be copied, modified, or distributed
// except according to those terms.
//! The module that contains the enumerator NumberErr for indicating number
//! operation.
// #![allow(missing_docs)]
// #![allow(rustdoc::missing_doc_code_examples)]
use ;
use ;
/// In operation of BigUInt, BigInt, and LargeInt, errors can occur. In this
/// case, the enumerator `NumberErr` will indicate what kind of error occurred.
///
/// # Example 1
/// ```
/// use std::str::FromStr;
/// use cryptocol::number::NumberErr;
/// use cryptocol::define_utypes_with;
/// define_utypes_with!(u128);
///
/// let a_biguint_wrapped = U256::from_str_radix("1234567890_ABCDEF_GHIJKLMN", 100);
/// match a_biguint_wrapped
/// {
/// Ok(a_biguint) => { println!("a_biguint = {}", a_biguint); },
/// Err(e) => {
/// println!("Error: {}", e);
/// assert_eq!(e.to_string(), "The given radix is out of the valid range. It should be in the range from binary up to 62-ary, inclusively.");
/// assert_eq!(e, NumberErr::OutOfValidRadixRange);
/// }
/// }
/// ```
///
/// # Example 2
/// ```
/// use std::str::FromStr;
/// use cryptocol::number::NumberErr;
/// use cryptocol::define_utypes_with;
/// define_utypes_with!(u128);
///
/// let a_biguint_wrapped = U256::from_str("@!#$%^&*()_+=-|-/?><`~");
/// match a_biguint_wrapped
/// {
/// Ok(a_biguint) => { println!("a_biguint = {}", a_biguint); },
/// Err(e) => {
/// println!("Error: {}", e);
/// assert_eq!(e.to_string(), "The string or the character is not alphanumeric.");
/// assert_eq!(e, NumberErr::NotAlphaNumeric);
/// }
/// }
/// ```
///
/// # Example 3
/// ```
/// use std::str::FromStr;
/// use cryptocol::number::NumberErr;
/// use cryptocol::define_utypes_with;
/// define_utypes_with!(u128);
///
/// let a_biguint_wrapped = U256::from_str_radix("1234567890_ABCDEF_GHIJKLMN", 16);
/// match a_biguint_wrapped
/// {
/// Ok(a_biguint) => { println!("a_biguint = {}", a_biguint); },
/// Err(e) => {
/// println!("Error: {}", e);
/// assert_eq!(e.to_string(), "The string or the character is not fit to the given radix.");
/// assert_eq!(e, NumberErr::NotFitToRadix);
/// }
/// }
/// ```
///
/// # Example 4
/// ```
/// use std::str::FromStr;
/// use cryptocol::number::NumberErr;
/// use cryptocol::define_utypes_with;
/// define_utypes_with!(u128);
///
/// let a_biguint_wrapped = U256::from_str("1234567891234567879123456789111111111222222222333333333444444444555555555666666666777777777888888888999999999000000000");
/// match a_biguint_wrapped
/// {
/// Ok(a_biguint) => { println!("a_biguint = {}", a_biguint); },
/// Err(e) => {
/// println!("Error: {}", e);
/// assert_eq!(e.to_string(), "The number that the string represents is too big for the created object to contain.");
/// assert_eq!(e, NumberErr::TooBigNumber);
/// }
/// }
/// ```