You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: primitives/src/unified_num.rs
+13-16
Original file line number
Diff line number
Diff line change
@@ -28,20 +28,18 @@ use std::{
28
28
/// use primitives::UnifiedNum;
29
29
/// use serde_json::Value;
30
30
///
31
-
/// fn main() {
32
-
/// let unified_num = UnifiedNum::from(42_999_987_654_321);
33
-
///
34
-
/// // Printing the unified num will show the value and the decimal point with precision of `UnifiedNum::PRECISION` (i.e. `8`) numbers after the decimal point
/// // Printing the unified num will show the value and the decimal point with precision of `UnifiedNum::PRECISION` (i.e. `8`) numbers after the decimal point
/// // Printing the Debug of unified num will show the value and the decimal point with precision of `UnifiedNum::PRECISION` (i.e. `8`) numbers after the decimal point
/// // Printing the Debug of unified num will show the value and the decimal point with precision of `UnifiedNum::PRECISION` (i.e. `8`) numbers after the decimal point
0 commit comments