Constant MAX

Deprecated since 1.99.0: replaced by the `MAX` associated constant on this type
pub const MAX: isize = 9_223_372_036_854_775_807isize;

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;