mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
17 lines
468 B
Go
17 lines
468 B
Go
// generated by stringer -type=RoundingMode; DO NOT EDIT
|
|
|
|
package big
|
|
|
|
import "fmt"
|
|
|
|
const _RoundingMode_name = "ToNearestEvenToNearestAwayToZeroAwayFromZeroToNegativeInfToPositiveInf"
|
|
|
|
var _RoundingMode_index = [...]uint8{0, 13, 26, 32, 44, 57, 70}
|
|
|
|
func (i RoundingMode) String() string {
|
|
if i+1 >= RoundingMode(len(_RoundingMode_index)) {
|
|
return fmt.Sprintf("RoundingMode(%d)", i)
|
|
}
|
|
return _RoundingMode_name[_RoundingMode_index[i]:_RoundingMode_index[i+1]]
|
|
}
|