Home | History | Annotate | Download | only in big

Lines Matching defs:RoundingMode

46 // their mode is the zero value for RoundingMode (ToNearestEven).
60 mode RoundingMode
122 // RoundingMode determines how a Float value is rounded to the
125 type RoundingMode byte
129 ToNearestEven RoundingMode = iota // == IEEE 754-2008 roundTiesToEven
137 //go:generate stringer -type=RoundingMode
193 func (z *Float) SetMode(mode RoundingMode) *Float {
216 func (x *Float) Mode() RoundingMode {