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:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user