Skip to content
/ round Public

A floating-point number rounding package for Go.

Notifications You must be signed in to change notification settings

mhale/round

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

round

A floating-point number rounding package for Go.

The Go standard library does not provide a rounding function in the math package, which requires Gophers to write their own. Here are some rounding functions you can use instead of doing that.

The default rounding mode is "banker's rounding". That is, values are rounded to the nearest integer value, with ties rounded to even integers.

For a C version of this functionality, see the cround package.

Usage

Import round as you would any other package, and then call one of the exposed functions. See the source code for a listing.

If you are not sure which function to use, you should use Round. A more explicit function is ToNearestEven.

Round

Round is a convenience wrapper for ToNearestEven.

value := round.Round(2.5)
// value is 2.0

RoundTo

RoundTo is a convenience wrapper for ToNearestEven, which rounds to a specified number of decimal places.

value := round.RoundTo(1234.5678, 2)
// value is 1234.57

ToNearestEven

ToNearestEven rounds to the nearest integer value, with ties rounded to even integers.

value := round.ToNearestEven(2.5)
// value is 2.0

Miscellaneous

These links may be useful to learn about floating-point rounding modes.

There are some additional utilities in the misc subdirectory. These utilities display the same test values used by this package, but rounded with C, Java and Go's Float type from the math/big package as a comparison.

Testing

The tests cover a range of test values, including the zero and infinity special cases. NaN is not included because a comparison between two NaN values always returns false.

There is an additional set of more rigorous tests in the cround subdirectory. These tests compare the round package results to the results returned from the mature rounding functions implemented in the C standard library.

Please submit any additional test cases that demonstrate errors or inaccuracies.

Licensing

This code is in the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

About

A floating-point number rounding package for Go.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published