pub const Round = enum
pub const Round = enum {
/// Round to the nearest representable value, with ties broken by the representation
/// that ends with a 0 bit.
nearest_even,
/// Round away from zero.
away,
/// Round towards zero.
trunc,
/// Round towards negative infinity.
floor,
/// Round towards positive infinity.
ceil,
}