MAX

Constant MAX 

1.0.0
pub const MAX: isize = isize::MAX; // 9_223_372_036_854_775_807isize
๐Ÿ‘ŽDeprecating in a future version: replaced by the MAX associated constant on this type
Expand description

The largest value that can be represented by this integer type. Use isize::MAX instead.

ยงExamples

// deprecated way
let max = std::isize::MAX;

// intended way
let max = isize::MAX;