package
Version:
v1.0.51
Opens a new window with list of versions in this module.
Published: Dec 13, 2022
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Round 四舍五入.
package main
import (
"fmt"
"github.com/xuender/oils/maths"
)
func main() {
fmt.Println(maths.Round(3.005, 2))
fmt.Println(maths.Round(3.004, 2))
fmt.Println(maths.Round(3.0006, 3))
}
Output:
3.01
3
3.001
Source Files
¶
Click to show internal directories.
Click to hide internal directories.