An open API service indexing awesome lists of open source software.

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

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)