Retro68/gcc/libgo/go/math/big/roundingmode_string.go

17 lines
501 B
Go
Raw Normal View History

2019-06-02 15:48:37 +00:00
// Code generated by "stringer -type=RoundingMode"; DO NOT EDIT.
2017-04-10 11:32:00 +00:00
package big
2019-06-02 15:48:37 +00:00
import "strconv"
2017-04-10 11:32:00 +00:00
const _RoundingMode_name = "ToNearestEvenToNearestAwayToZeroAwayFromZeroToNegativeInfToPositiveInf"
var _RoundingMode_index = [...]uint8{0, 13, 26, 32, 44, 57, 70}
func (i RoundingMode) String() string {
2019-06-02 15:48:37 +00:00
if i >= RoundingMode(len(_RoundingMode_index)-1) {
return "RoundingMode(" + strconv.FormatInt(int64(i), 10) + ")"
2017-04-10 11:32:00 +00:00
}
return _RoundingMode_name[_RoundingMode_index[i]:_RoundingMode_index[i+1]]
}