feat(Num): rename Float to F64

This commit is contained in:
rvcas 2020-11-24 10:25:21 -05:00
parent 301ee85219
commit f7bd803509
19 changed files with 140 additions and 144 deletions

View file

@ -74,7 +74,7 @@ pub fn str_type() -> Type {
#[inline(always)]
pub fn num_float() -> Type {
Type::Alias(
Symbol::NUM_FLOAT,
Symbol::NUM_F64,
vec![],
Box::new(num_num(num_floatingpoint())),
)