1.0.0[][src]Constant std::isize::MAX

pub const MAX: isize = isize::MAX; // 2_147_483_647isize

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;
Run


Home ⌂Doc Index ◂Up ▴