sukker 2.1.3

Linear Algebra and Matrices made easy!
Documentation
//! Module containing often used mathematical constants

/// Infinity
pub const INF: f32 = f32::INFINITY;

/// Not A Number as f32
pub const NANF32: f32 = f32::NAN;

/// Euler constant as f32
pub const EF32: f32 = std::f32::consts::E;

/// Max value an f32 can be
pub const MAXF32: f32 = f32::MAX;

/// Min value an f32 can be
pub const MINF32: f32 = f32::MIN;

/// Pi, mathematical constant represented as f32
pub const PIF32: f32 = std::f32::consts::PI;

/// Infinity as f64
pub const INF64: f64 = f64::INFINITY;

/// Not a Number for f64
pub const NANF64: f64 = f64::NAN;

/// Euler constant as f32
pub const EF64: f64 = std::f64::consts::E;

/// Max value an f64 can be
pub const MAXF64: f64 = f64::MAX;

/// Min value an f64 can be
pub const MINF64: f64 = f64::MIN;

/// Pi, mathematical constant represented as f64
pub const PIF64: f64 = std::f64::consts::PI;

/// Max value an i32 can be
pub const MAXI32: i32 = i32::MAX;

/// Min value an i32 can be
pub const MINI32: i32 = i32::MIN;

/// Max value an i64 can be
pub const MAXI64: i64 = i64::MAX;

/// Min value an i64 can be
pub const MINI64: i64 = i64::MIN;

/// Max value an i8 can be
pub const MAXI8: i8 = i8::MAX;

/// Min value an i8 can be
pub const MINI8: i8 = i8::MIN;

/// Max value an i128 can be
pub const MAXI128: i128 = i128::MAX;

/// Min value an i8 can be
pub const MINI128: i128 = i128::MIN;