Native64StrictFiniteInDebug

Type Alias Native64StrictFiniteInDebug 

Source
pub type Native64StrictFiniteInDebug = NumKernelStrictFiniteInDebug<f64, 53>;
Expand description

A kernel policy that enforces strict finiteness for f64 values only in debug builds.

This is a type alias for NumKernelStrictFiniteInDebug<f64, 53>.

This policy is designed for performance-critical applications. In debug builds, it behaves identically to Native64StrictFinite, panicking on validation failures. In release builds, these validation checks are disabled, and operations proceed assuming the inputs are valid. Use this policy with caution when you can guarantee the integrity of your data in release environments.

Aliased Typeยง

pub struct Native64StrictFiniteInDebug { /* private fields */ }