round_ties_even_f32

round_ties_even_f32 (짝수 반올림)

f32 값에서 경계를 짝수 쪽으로 반올림하는 내장 함수예요.

출처: Rust 공식 문서

본문

가장 가까운 정수를 반환하되 경계(half-way)에서는 최하위 자릿수가 짝수인 쪽으로 반올림해요. 안정화된 버전은 f32::round_ties_even 이에요.

pub const fn round_ties_even_f32(x: f32 ) -> f32

더 알아보기 (Learn more)

Rust 공식 문서