https://github.com/go-utils/round
Easy rounding
https://github.com/go-utils/round
go golang round rounding
Last synced: about 16 hours ago
JSON representation
Easy rounding
- Host: GitHub
- URL: https://github.com/go-utils/round
- Owner: go-utils
- License: mit
- Created: 2020-06-16T23:19:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-04T20:00:45.000Z (over 5 years ago)
- Last Synced: 2025-10-28T07:48:16.249Z (9 months ago)
- Topics: go, golang, round, rounding
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# What is this?
Easy rounding
# Installation
```commandline
$ go get github.com/go-utils/round
```
# Usage
```go
package main
import (
"fmt"
"github.com/go-utils/round"
)
func main() {
fmt.Println(round.Do(3.4444449))
// Output: 4
}
```
# License
[MIT](./LICENSE)