pub enum Round {
Nearest = 0,
Negative = 1,
Positive = 2,
Zero = 3,
}
Expand description
IEEE 754 rounding mode, excluding the optional roundTiesToAway
version of nearest.
Integer representation comes from what CORE-MATH uses for indexing.