i32_constant_MIN

i32_constant_MIN (i32 MIN 상수)

i32 타입으로 표현할 수 있는 가장 작은 값이에요.

출처: Rust 공식 문서

본문

이 정수 타입으로 표현할 수 있는 가장 작은 값이에요. 값은 -2_147_483_648 이에요. 더 이상 사용되지 않을 예정이므로 i32::MIN 를 대신 사용하세요.

pub const MIN: i32 = i32::MIN; // -2_147_483_648i32 👎 Deprecating in a future version: replaced by the MIN associated constant on this type

더 알아보기 (Learn more)

Rust 공식 문서