| 184 | |
| 185 | |
| 186 | class FloatRoundStyle(enum.Enum): |
| 187 | ToNearest = enum_auto() |
| 188 | ToNearestSatfinite = enum_auto() |
| 189 | Indeterminate = enum_auto() |
| 190 | TowardZero = enum_auto() |
| 191 | TowardInfinity = enum_auto() |
| 192 | TowardNegInfinity = enum_auto() |
| 193 | HalfUlpTruncDntz = enum_auto() |
| 194 | HalfUlpTruncate = enum_auto() |
| 195 | |
| 196 | |
| 197 | FloatRoundStyleTag = { |
nothing calls this directly
no test coverage detected