Add Decimal number type.

This commit is contained in:
Stephen Chung
2021-02-13 20:57:56 +08:00
parent 4fdd58f220
commit 3650b04c38
15 changed files with 477 additions and 16 deletions

View File

@@ -10,7 +10,6 @@ use crate::stdlib::{
hash::Hash,
num::{NonZeroU64, NonZeroUsize},
ops::{Add, AddAssign},
str::FromStr,
string::String,
vec,
vec::Vec,
@@ -22,7 +21,7 @@ use crate::{
};
#[cfg(not(feature = "no_float"))]
use crate::FLOAT;
use crate::{stdlib::str::FromStr, FLOAT};
#[cfg(not(feature = "no_index"))]
use crate::Array;