round_ties_even_f64
round_ties_even_f64 (짝수 반올림)
f64 값에서 경계를 짝수 쪽으로 반올림하는 내장 함수예요.
출처: Rust 공식 문서
본문
가장 가까운 정수를 반환하되 경계(half-way)에서는 최하위 자릿수가 짝수인 쪽으로 반올림해요. 안정화된 버전은 f64::round_ties_even 이에요.
pub const fn round_ties_even_f64(x: f64 ) -> f64
f64 값에서 경계를 짝수 쪽으로 반올림하는 내장 함수예요.
출처: Rust 공식 문서
가장 가까운 정수를 반환하되 경계(half-way)에서는 최하위 자릿수가 짝수인 쪽으로 반올림해요. 안정화된 버전은 f64::round_ties_even 이에요.
pub const fn round_ties_even_f64(x: f64 ) -> f64