Float类型优化

This commit is contained in:
2023-05-16 11:56:51 +08:00
parent 1b9800a6ee
commit 5087636791
2 changed files with 67 additions and 0 deletions

View File

@ -254,6 +254,16 @@ type Float32Result struct {
Err error
}
// Float32PtrResult ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 11:10 2023/5/16
type Float32PtrResult struct {
Value *float32
Err error
}
// Float64Result ...
//
// Author : go_developer@163.com<白茶清欢>