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

pub const MIN: isize = isize::MIN; // -2_147_483_648isize

The smallest value that can be represented by this integer type. Use isize::MIN instead.

Examples

// deprecated way
let min = std::isize::MIN;

// intended way
let min = isize::MIN;
Run


Home ⌂Doc Index ◂Up ▴