i64_constant_MAX

i64_constant_MAX (i64 MAX 상수)

i64 타입으로 표현할 수 있는 가장 큰 값이에요.

출처: Rust 공식 문서

본문

이 정수 타입으로 표현할 수 있는 가장 큰 값이에요. 값은 9_223_372_036_854_775_807 이에요. 더 이상 사용되지 않을 예정이므로 i64::MAX 를 대신 사용하세요.

pub const MAX: i64 = i64::MAX; // 9_223_372_036_854_775_807i64 👎 Deprecating in a future version: replaced by the MAX associated constant on this type

더 알아보기 (Learn more)

Rust 공식 문서