1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

strconv: vfmt everything

This commit is contained in:
Delyan Angelov
2021-06-18 17:59:56 +03:00
parent 5dff8dc097
commit de384f1cc8
17 changed files with 1544 additions and 1252 deletions

View File

@@ -4,8 +4,8 @@ module strconv
pub struct PrepNumber {
pub mut:
negative bool // 0 if positive number, 1 if negative
exponent int // power of 10 exponent
mantissa u64 // integer mantissa
exponent int // power of 10 exponent
mantissa u64 // integer mantissa
}
// dec32 is a floating decimal type representing m * 10^e.
@@ -52,4 +52,4 @@ pub union Float32u {
pub mut:
f f32
u u32
}
}