i8_constant_MAX
i8_constant_MAX (i8 MAX 상수)
i8 타입으로 표현할 수 있는 가장 큰 값이에요.
출처: Rust 공식 문서
본문
이 정수 타입으로 표현할 수 있는 가장 큰 값이에요. 값은 127 이에요. 더 이상 사용되지 않을 예정이므로 i8::MAX 를 대신 사용하세요.
pub const MAX: i8 = i8::MAX; // 127i8 👎 Deprecating in a future version: replaced by the MAX associated constant on this type