1.0.0[][src]Constant no_std_compat::i64::MIN

pub const MIN: i64 = i64::MIN; // -9_223_372_036_854_775_808i64

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

Examples

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

// intended way
let min = i64::MIN;