You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
533 B

  1. // Code generated by "stringer -type RoundingMode"; DO NOT EDIT.
  2. package number
  3. import "strconv"
  4. const _RoundingMode_name = "ToNearestEvenToNearestZeroToNearestAwayToPositiveInfToNegativeInfToZeroAwayFromZeronumModes"
  5. var _RoundingMode_index = [...]uint8{0, 13, 26, 39, 52, 65, 71, 83, 91}
  6. func (i RoundingMode) String() string {
  7. if i >= RoundingMode(len(_RoundingMode_index)-1) {
  8. return "RoundingMode(" + strconv.FormatInt(int64(i), 10) + ")"
  9. }
  10. return _RoundingMode_name[_RoundingMode_index[i]:_RoundingMode_index[i+1]]
  11. }